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