netty-socketio icon indicating copy to clipboard operation
netty-socketio copied to clipboard

How can i get event_name from listener

Open liangyuanpeng opened this issue 4 years ago • 0 comments

public class HelloListener implements DataListener {
    @Override
    public void onData(SocketIOClient client, Object data, AckRequest ackSender) throws Exception {
        log.info("data:{}",data);
    }
}

In my case, i just want to know who send data to me and hope all the data will arrive here. remind me if i missed some doc. please!

liangyuanpeng avatar Aug 23 '21 03:08 liangyuanpeng