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

com.twitter.finagle.netty3.ChannelFuture.scala Maven / Gradle / Ivy

package com.twitter.finagle.netty3

import org.jboss.netty.channel._

/**
 * A ChannelFuture that doesn't need to have a channel on creation.
 */
private[finagle] class LatentChannelFuture extends DefaultChannelFuture(null, false) {
  @volatile private var channel: Channel = _

  def setChannel(c: Channel) { channel = c }
  override def getChannel() = channel
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy