Class SimpleClientHandler
java.lang.Object
io.netty.channel.ChannelHandlerAdapter
io.netty.channel.ChannelInboundHandlerAdapter
org.opendaylight.openflowjava.protocol.impl.clients.SimpleClientHandler
- All Implemented Interfaces:
- io.netty.channel.ChannelHandler,- io.netty.channel.ChannelInboundHandler
public class SimpleClientHandler
extends io.netty.channel.ChannelInboundHandlerAdapter
Simple client handler.
- Author:
- michal.polkorab
- 
Nested Class SummaryNested classes/interfaces inherited from interface io.netty.channel.ChannelHandlerio.netty.channel.ChannelHandler.Sharable
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionSimpleClientHandler(com.google.common.util.concurrent.SettableFuture<Boolean> isOnlineFuture, ScenarioHandler scenarioHandler) Constructor.
- 
Method SummaryModifier and TypeMethodDescriptionvoidchannelActive(io.netty.channel.ChannelHandlerContext ctx) voidchannelRead(io.netty.channel.ChannelHandlerContext ctx, Object msg) voidsetScenario(ScenarioHandler handler) Sets the ScenarioHandler.Methods inherited from class io.netty.channel.ChannelInboundHandlerAdapterchannelInactive, channelReadComplete, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaught, userEventTriggeredMethods inherited from class io.netty.channel.ChannelHandlerAdapterensureNotSharable, handlerAdded, handlerRemoved, isSharableMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.netty.channel.ChannelHandlerhandlerAdded, handlerRemoved
- 
Field Details- 
scenarioHandler
 
- 
- 
Constructor Details- 
SimpleClientHandlerpublic SimpleClientHandler(com.google.common.util.concurrent.SettableFuture<Boolean> isOnlineFuture, ScenarioHandler scenarioHandler) Constructor.- Parameters:
- isOnlineFuture- future notifier of connected channel
- scenarioHandler- handler of scenario events
 
 
- 
- 
Method Details- 
channelRead- Specified by:
- channelReadin interface- io.netty.channel.ChannelInboundHandler
- Overrides:
- channelReadin class- io.netty.channel.ChannelInboundHandlerAdapter
 
- 
channelActivepublic void channelActive(io.netty.channel.ChannelHandlerContext ctx) - Specified by:
- channelActivein interface- io.netty.channel.ChannelInboundHandler
- Overrides:
- channelActivein class- io.netty.channel.ChannelInboundHandlerAdapter
 
- 
setScenarioSets the ScenarioHandler.- Parameters:
- handler- handler of scenario events
 
 
-