Uses of Class
org.jgroups.Channel

Packages that use Channel
org.jgroups   
org.jgroups.blocks   
org.jgroups.demos   
org.jgroups.service   
org.jgroups.service.lease   
 

Uses of Channel in org.jgroups
 

Subclasses of Channel in org.jgroups
 class EnsChannel
          EnsChannel is an implementation of Channel based on Ensemble.
 class JChannel
          JChannel is a pure Java implementation of Channel When a JChannel object is instantiated it automatically sets up the protocol stack
 

Methods in org.jgroups that return Channel
 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 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 EnsChannelFactory.createChannel(java.lang.Object properties)
           
 Channel EnsChannelFactory.createChannel()
          No-Op implementation of the createChannel() method specified by the Channel interface.
 Channel ChannelFactory.createChannel(java.lang.Object properties)
          Deprecated. Channel factories should pass configuration information related to the protocol stack during construction or via another method before attempting to create any channels.
 Channel ChannelFactory.createChannel()
          Creates an instance implementing the Channel interface.
 

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

Uses of Channel in org.jgroups.blocks
 

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

Methods in org.jgroups.blocks that return Channel
 Channel ReplicatedTree.getChannel()
          Returns the Channel the DistributedTree is connected to
 Channel ReplicatedHashtable.getChannel()
           
 Channel NotificationBus.getChannel()
          Used to operate on the underlying channel directly, e.g.
 Channel DistributedTree.getChannel()
          Returns the Channel the DistributedTree is connected to
 Channel DistributedQueue.getChannel()
           
 Channel DistributedHashtable.getChannel()
           
 

Methods in org.jgroups.blocks with parameters of type Channel
 void RpcDispatcher.channelConnected(Channel channel)
           
 void RpcDispatcher.channelDisconnected(Channel channel)
           
 void RpcDispatcher.channelClosed(Channel channel)
           
 

Constructors in org.jgroups.blocks with parameters of type Channel
ReplicationManager(Channel channel, MessageListener ml, MembershipListener l, ReplicationReceiver receiver)
          Creates an instance of ReplicationManager on top of a Channel
VotingAdapter(Channel channel)
          Creates an instance of the VoteChannel that uses JGroups for communication between group members.
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)
           
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)
           
 

Uses of Channel in org.jgroups.demos
 

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

Uses of Channel in org.jgroups.service
 

Fields in org.jgroups.service declared as Channel
protected  Channel AbstractService.serviceChannel
           
protected  Channel AbstractService.clientChannel
           
 

Constructors in org.jgroups.service with parameters of type Channel
AbstractService(Channel serviceChannel, Channel clientChannel)
          Main constructor to create services.
 

Uses of Channel in org.jgroups.service.lease
 

Fields in org.jgroups.service.lease declared as Channel
protected  Channel LeaseFactoryClient.clientChannel
           
 

Constructors in org.jgroups.service.lease with parameters of type Channel
LeaseFactoryService(Channel serviceChannel, Channel clientChannel)
          Create instance of this class.
LeaseFactoryClient(Channel clientChannel)
          Create instance of this class for specified client channel with default timeouts.
LeaseFactoryClient(Channel clientChannel, int leaseTimeout, int cancelTimeout)
          Create instance of this class for the specified channel with specified timeouts.
 



Copyright ? 2001,2002 www.jgroups.com . All Rights Reserved.