All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twitter.finagle.netty4.encoder.BufEncoder.scala Maven / Gradle / Ivy

There is a newer version: 24.2.0
Show newest version
package com.twitter.finagle.netty4.encoder

import com.twitter.finagle.netty4.codec.BufCodec
import io.netty.channel.ChannelHandler.Sharable
import io.netty.channel.{ChannelHandlerContext, ChannelOutboundHandlerAdapter, ChannelPromise}

/**
 * A Buf -> ByteBuf encoder.
 */
@Sharable
private[finagle] object BufEncoder extends ChannelOutboundHandlerAdapter {

  override def write(ctx: ChannelHandlerContext, msg: Any, p: ChannelPromise): Unit =
    BufCodec.write(ctx, msg, p)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy