-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
When creating a new LlrpClient, the class creates an IoHandler. The IoHandler's constructor parameters keepAliveAck and keepAliveForward always default to true, false.
It would be nice if we could somehow configure these values if needed.
| private IoHandler createHandler(LlrpContext context) { | |
| IoSession ioSession = new IoSession() { | |
| @Override | |
| public void send(ByteBuffer data) { | |
| nioClient.send(data); | |
| } | |
| }; | |
| return new IoHandler(context, ioSession, true, false); | |
| } |
Metadata
Metadata
Assignees
Labels
No labels