Remove LocRibWriter registration on close()
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / BGPMessageToByteEncoder.java
index 633d232788d609e95e8087c5760da9e13244e8fa..7ccb289599c9deec15e871442c175a5d4b9cb874 100644 (file)
@@ -10,12 +10,12 @@ package org.opendaylight.protocol.bgp.rib.impl;
 import com.google.common.base.Preconditions;
 
 import io.netty.buffer.ByteBuf;
+import io.netty.buffer.ByteBufUtil;
 import io.netty.channel.ChannelHandler.Sharable;
 import io.netty.channel.ChannelHandlerContext;
 import io.netty.handler.codec.MessageToByteEncoder;
 
 import org.opendaylight.protocol.bgp.parser.spi.MessageRegistry;
-import org.opendaylight.protocol.util.ByteArray;
 import org.opendaylight.yangtools.yang.binding.Notification;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -35,9 +35,8 @@ final class BGPMessageToByteEncoder extends MessageToByteEncoder<Notification> {
     @Override
     protected void encode(final ChannelHandlerContext ctx, final Notification msg, final ByteBuf out) {
         LOG.trace("Encoding message: {}", msg);
-        final byte[] bytes = this.registry.serializeMessage(msg);
-        LOG.trace("Encoded message: {}", ByteArray.bytesToHexString(bytes));
-        out.writeBytes(bytes);
+        this.registry.serializeMessage(msg, out);
+        LOG.trace("Encoded message: {}", ByteBufUtil.hexDump(out));
         LOG.debug("Message sent to output: {}", msg);
     }
 }