vert.x
vert.x copied to clipboard
readStream mapping to other type of readStream to support pipe
Read me
readStream mapping to other type of readStream to support pipe
Describe the feature
ReadStream<Integer> rs; WriteStream<String> ws;
when ReadStream of sub type and WriteStream of sub type do not match, Pipe cannot be performed. so add map function to support this;
rs.map(Integer::toString).pipeTo(ws);
#4126