-
Sub-task
-
Resolution: Unresolved
-
Major
-
2.17.0.Final
-
None
It would be good to be able to create a Websocket Message Decoder with the following command :
websocket-new-decoder --named MyDecoder --encoderType TEXT --type MyMessage
The generated code would look like
public class MessageDecoder implements Decoder.Text<MyMessage> { @Override public MyMessage decode(String s) throws DecodeException { return null; } @Override public boolean willDecode(String s) { return false; } @Override public void init(EndpointConfig endpointConfig) { } @Override public void destroy() { } }
The encoderType parameter can be TEXT, TextStream, Binary, BinaryStream