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

com.wavesplatform.network.PipelineInitializer.scala Maven / Gradle / Ivy

The newest version!
package com.wavesplatform.network

import io.netty.channel.{Channel, ChannelHandler, ChannelInitializer}

class PipelineInitializer(handlers: => Seq[ChannelHandler]) extends ChannelInitializer[Channel] {
  override def initChannel(ch: Channel): Unit = {
    handlers.foldLeft(ch.pipeline())(_.addLast(_))
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy