コード例 #1
0
 public void RepartitionWithExplicitSerDes()
 {
     SetupTest((builder) =>
     {
         builder
         .Stream <string, string>("topic")
         .Repartition(Repartitioned <string, string> .With(new StringSerDes(), new StringSerDes()))
         .To("output");
     });
 }