diff options
author | Edward Valley <ed.valley@yandex.com> | 2019-07-16 23:05:26 -0400 |
---|---|---|
committer | Edward Valley <ed.valley@yandex.com> | 2019-07-16 23:05:26 -0400 |
commit | f38ced7862c7eb635db25e52d61ef7956da58ce9 (patch) | |
tree | 6d596ae44dd04c040cc51fc616c3cde5d3c2e8e7 /src/main/java/org/traccar/protocol/WondexProtocol.java | |
parent | 4c4fb4d90a1aeb1acbdfd11516644b1a149605bd (diff) | |
download | trackermap-server-f38ced7862c7eb635db25e52d61ef7956da58ce9.tar.gz trackermap-server-f38ced7862c7eb635db25e52d61ef7956da58ce9.tar.bz2 trackermap-server-f38ced7862c7eb635db25e52d61ef7956da58ce9.zip |
Pass a Protocol object to encoders
Diffstat (limited to 'src/main/java/org/traccar/protocol/WondexProtocol.java')
-rw-r--r-- | src/main/java/org/traccar/protocol/WondexProtocol.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/org/traccar/protocol/WondexProtocol.java b/src/main/java/org/traccar/protocol/WondexProtocol.java index 8c6283d66..ff3dd7c86 100644 --- a/src/main/java/org/traccar/protocol/WondexProtocol.java +++ b/src/main/java/org/traccar/protocol/WondexProtocol.java @@ -25,7 +25,7 @@ import io.netty.handler.codec.string.StringEncoder; public class WondexProtocol extends BaseProtocol { public WondexProtocol() { - setTextCommandEncoder(new WondexProtocolEncoder()); + setTextCommandEncoder(new WondexProtocolEncoder(WondexProtocol.this)); setSupportedCommands( Command.TYPE_GET_DEVICE_STATUS, Command.TYPE_GET_MODEM_STATUS, @@ -38,7 +38,7 @@ public class WondexProtocol extends BaseProtocol { protected void addProtocolHandlers(PipelineBuilder pipeline) { pipeline.addLast(new WondexFrameDecoder()); pipeline.addLast(new StringEncoder()); - pipeline.addLast(new WondexProtocolEncoder()); + pipeline.addLast(new WondexProtocolEncoder(WondexProtocol.this)); pipeline.addLast(new WondexProtocolDecoder(WondexProtocol.this)); } }); @@ -46,7 +46,7 @@ public class WondexProtocol extends BaseProtocol { @Override protected void addProtocolHandlers(PipelineBuilder pipeline) { pipeline.addLast(new StringEncoder()); - pipeline.addLast(new WondexProtocolEncoder()); + pipeline.addLast(new WondexProtocolEncoder(WondexProtocol.this)); pipeline.addLast(new WondexProtocolDecoder(WondexProtocol.this)); } }); |