@@ -21,15 +21,15 @@ public static void ToBinaryStream<TKey, TPayload>(this IStreamable<TKey, TPayloa
2121 {
2222 if ( writePropertiesToStream )
2323 {
24- var propSer = StreamableSerializer . Create < SerializedProperties > ( ) ;
24+ var propSer = StreamSerializer . Create < SerializedProperties > ( ) ;
2525 propSer . Serialize ( binaryStream , SerializedProperties . FromStreamProperties ( input . Properties ) ) ;
2626 }
2727 input . ToStreamMessageObservable ( )
2828 . Subscribe ( new BinaryStreamObserver < TKey , TPayload > ( input . Properties , binaryStream ) ) ;
2929 }
3030
3131 /// <summary>
32- /// Serialize streamable into a binary file
32+ /// Serialize streamble into a binary file
3333 /// </summary>
3434 /// <typeparam name="TKey"></typeparam>
3535 /// <typeparam name="TPayload"></typeparam>
@@ -57,15 +57,15 @@ public static void RegisterBinaryOutput<TKey, TPayload>(this QueryContainer cont
5757 {
5858 if ( writePropertiesToStream )
5959 {
60- var propSer = StreamableSerializer . Create < SerializedProperties > ( ) ;
60+ var propSer = StreamSerializer . Create < SerializedProperties > ( ) ;
6161 propSer . Serialize ( binaryStream , SerializedProperties . FromStreamProperties ( input . Properties ) ) ;
6262 }
6363 container . RegisterOutputAsStreamMessages ( input , identifier )
6464 . Subscribe ( new BinaryStreamObserver < TKey , TPayload > ( input . Properties , binaryStream ) ) ;
6565 }
6666
6767 /// <summary>
68- /// Serialize streamable into a binary file
68+ /// Serialize streamble into a binary file
6969 /// </summary>
7070 /// <typeparam name="TKey"></typeparam>
7171 /// <typeparam name="TPayload"></typeparam>
0 commit comments