Uses of Class
org.jgroups.Channel

Packages that use Channel
org.jgroups Provides top-level public JGroups classes such as Channel, Message, etc. 
org.jgroups.blocks Provides building blocks that are layered on top of channels. 
org.jgroups.demos Provides demonstrations of JGroups functionality. 
org.jgroups.jmx   
org.jgroups.mux   
org.jgroups.stack Support for managing protocol stacks. 
org.jgroups.util Provides useful functionality which cannot be assigned to any particular other package. 
 

Uses of Channel in org.jgroups
 

Subclasses of Channel in org.jgroups
 class JChannel
          JChannel is a pure Java implementation of Channel.
 

Methods in org.jgroups that return Channel
 Channel JChannelFactory.createChannel()
          Creates a JChannel implementation of the Channel interface using the protocol stack configuration information specfied during construction of an instance of this factory.
 Channel ChannelFactory.createChannel()
          Create a new channel with the properties defined in the factory
 Channel JChannelFactory.createChannel(java.lang.Object properties)
          Deprecated. JChannel's conversion to type-specific construction, and the subsequent deprecation of its JChannel(Object) constructor, necessitate the deprecation of this factory method as well. Type-specific protocol stack configuration should be specfied during construction of an instance of this factory.
 Channel ChannelFactory.createChannel(java.lang.Object props)
           
 Channel JChannelFactory.createChannel(java.lang.String stack_name)
           
 Channel ChannelFactory.createChannel(java.lang.String stack_name)
           
 Channel JChannelFactory.createMultiplexerChannel(java.lang.String stack_name, java.lang.String id)
           
 Channel ChannelFactory.createMultiplexerChannel(java.lang.String stack_name, java.lang.String id)
          Creates an implementation of the Channel using a given stack name and registering it under a given identity.
 Channel JChannelFactory.createMultiplexerChannel(java.lang.String stack_name, java.lang.String id, boolean register_for_state_transfer, java.lang.String substate_id)
           
 Channel ChannelFactory.createMultiplexerChannel(java.lang.String stack_name, java.lang.String id, boolean register_for_state_transfer, java.lang.String substate_id)
          Creates an implementation of the Channel using a given stack name and registering it under a given identity.
 

Methods in org.jgroups with parameters of type Channel
 void ChannelListenerAdapter.channelClosed(Channel channel)
           
 void ChannelListener.channelClosed(Channel channel)
           
 void ChannelListenerAdapter.channelConnected(Channel channel)
           
 void ChannelListener.channelConnected(Channel channel)
           
 void ChannelListenerAdapter.channelDisconnected(Channel channel)
           
 void ChannelListener.channelDisconnected(Channel channel)
           
protected  void Channel.notifyChannelClosed(Channel c)
           
protected  void Channel.notifyChannelConnected(Channel c)
           
protected  void Channel.notifyChannelDisconnected(Channel c)
           
 

Uses of Channel in org.jgroups.blocks
 

Fields in org.jgroups.blocks declared as Channel
protected  Channel DistributedQueue.channel
           
protected  Channel MessageDispatcher.channel
           
protected  Channel DistributedTree.channel
           
 

Methods in org.jgroups.blocks that return Channel
 Channel NotificationBus.getChannel()
          Answers the Channel.
 Channel DistributedHashtable.getChannel()
          Deprecated.  
 Channel ReplicatedHashtable.getChannel()
          Deprecated.  
 Channel ReplicatedHashMap.getChannel()
           
 Channel DistributedQueue.getChannel()
           
 Channel ReplicatedTree.getChannel()
          Returns the Channel the DistributedTree is connected to
 Channel MessageDispatcher.getChannel()
          Offers access to the underlying Channel.
 Channel DistributedTree.getChannel()
          Returns the Channel the DistributedTree is connected to
 

Methods in org.jgroups.blocks with parameters of type Channel
 void RpcDispatcher.channelClosed(Channel channel)
           
 void PullPushAdapter.channelClosed(Channel channel)
          Deprecated.  
 void RpcDispatcher.channelConnected(Channel channel)
           
 void PullPushAdapter.channelConnected(Channel channel)
          Deprecated.  
 void RpcDispatcher.channelDisconnected(Channel channel)
           
 void PullPushAdapter.channelDisconnected(Channel channel)
          Deprecated.  
 void MessageDispatcher.setChannel(Channel ch)
           
 

Constructors in org.jgroups.blocks with parameters of type Channel
DistributedHashtable(Channel channel, boolean persistent, long state_timeout)
          Deprecated.  
DistributedHashtable(Channel channel, long state_timeout)
          Deprecated.  
MessageDispatcher(Channel channel, MessageListener l, MembershipListener l2)
           
MessageDispatcher(Channel channel, MessageListener l, MembershipListener l2, boolean deadlock_detection)
           
MessageDispatcher(Channel channel, MessageListener l, MembershipListener l2, boolean deadlock_detection, boolean concurrent_processing)
           
MessageDispatcher(Channel channel, MessageListener l, MembershipListener l2, RequestHandler req_handler)
           
MessageDispatcher(Channel channel, MessageListener l, MembershipListener l2, RequestHandler req_handler, boolean deadlock_detection)
           
MessageDispatcher(Channel channel, MessageListener l, MembershipListener l2, RequestHandler req_handler, boolean deadlock_detection, boolean concurrent_processing)
           
NotificationBus(Channel channel, java.lang.String bus_name)
           
ReplicatedHashMap(Channel channel)
           
ReplicatedHashMap(Channel channel, boolean persistent)
           
RpcDispatcher(Channel channel, MessageListener l, MembershipListener l2, java.lang.Object server_obj)
           
RpcDispatcher(Channel channel, MessageListener l, MembershipListener l2, java.lang.Object server_obj, boolean deadlock_detection)
           
RpcDispatcher(Channel channel, MessageListener l, MembershipListener l2, java.lang.Object server_obj, boolean deadlock_detection, boolean concurrent_processing)
           
VotingAdapter(Channel channel)
          Creates an instance of the VoteChannel that uses JGroups for communication between group members.
 

Uses of Channel in org.jgroups.demos
 

Methods in org.jgroups.demos with parameters of type Channel
 void Gossip.channelClosed(Channel channel)
           
 void Draw.channelClosed(Channel channel)
           
 void Gossip.channelConnected(Channel channel)
           
 void Draw.channelConnected(Channel channel)
           
 void Gossip.channelDisconnected(Channel channel)
           
 void Draw.channelDisconnected(Channel channel)
           
 

Constructors in org.jgroups.demos with parameters of type Channel
Draw(Channel channel)
           
Draw(Channel channel, boolean use_state, long state_timeout)
           
 

Uses of Channel in org.jgroups.jmx
 

Methods in org.jgroups.jmx that return Channel
 Channel JChannelFactoryMBean.createMultiplexerChannel(java.lang.String stack_name, java.lang.String id)
           
 Channel JChannelFactory.createMultiplexerChannel(java.lang.String stack_name, java.lang.String id)
           
 Channel JChannelFactoryMBean.createMultiplexerChannel(java.lang.String stack_name, java.lang.String id, boolean register_for_state_transfer, java.lang.String substate_id)
           
 Channel JChannelFactory.createMultiplexerChannel(java.lang.String stack_name, java.lang.String id, boolean register_for_state_transfer, java.lang.String substate_id)
           
 

Uses of Channel in org.jgroups.mux
 

Subclasses of Channel in org.jgroups.mux
 class MuxChannel
          Multiplexer channel is a lightweight version of a regular channel where multiple MuxChannel(s) share the same underlying regular channel.
 

Methods in org.jgroups.mux that return Channel
 Channel Multiplexer.createMuxChannel(java.lang.String id, java.lang.String stack_name)
           
 

Uses of Channel in org.jgroups.stack
 

Methods in org.jgroups.stack that return Channel
 Channel ProtocolStack.getChannel()
           
 

Uses of Channel in org.jgroups.util
 

Methods in org.jgroups.util with parameters of type Channel
static void Util.close(Channel... channels)
           
static void Util.close(Channel ch)
           
static boolean Util.startFlush(Channel c)
           
static boolean Util.startFlush(Channel c, int numberOfAttempts, long randomSleepTimeoutFloor, long randomSleepTimeoutCeiling)
           
static boolean Util.startFlush(Channel c, java.util.List<Address> flushParticipants)
           
static boolean Util.startFlush(Channel c, java.util.List<Address> flushParticipants, int numberOfAttempts, long randomSleepTimeoutFloor, long randomSleepTimeoutCeiling)
           
 



Copyright ? 1998-2008 Bela Ban. All Rights Reserved.