Uses of Class
org.jgroups.util.Buffer
-
Packages that use Buffer Package Description org.jgroups.protocols Provides implementations of transport protocols which are responsible for sending and receiving messages to/from the network.org.jgroups.util Provides useful functionality which cannot be assigned to any particular other package. -
-
Uses of Buffer in org.jgroups.protocols
Fields in org.jgroups.protocols declared as Buffer Modifier and Type Field Description protected Buffer<Message>
ReliableMulticast. local_xmit_table
Fields in org.jgroups.protocols with type parameters of type Buffer Modifier and Type Field Description protected java.util.Map<Address,Buffer<Message>>
ReliableMulticast. xmit_table
Map to store sent and received messages (keyed by sender)Methods in org.jgroups.protocols with type parameters of type Buffer Modifier and Type Method Description <T extends Buffer<Message>>
TReliableMulticast. getWindow(Address sender)
Returns the receive window for sender; only used for testing.Methods in org.jgroups.protocols that return Buffer Modifier and Type Method Description protected Buffer<Message>
NAKACK3. createXmitWindow(long initial_seqno)
protected Buffer<Message>
NAKACK4. createXmitWindow(long initial_seqno)
protected abstract Buffer<Message>
ReliableMulticast. createXmitWindow(long initial_seqno)
protected Buffer<Message>
ReliableMulticast. sendBuf()
Methods in org.jgroups.protocols with parameters of type Buffer Modifier and Type Method Description protected void
ReliableMulticast. deliver(Message msg, Address sender, long seqno, Buffer<Message> win, java.lang.String error_msg)
protected void
ReliableMulticast. deliverBatch(MessageBatch batch, Buffer<Message> buf)
protected void
ReliableMulticast. removeAndDeliver(Buffer<Message> win, Address sender, boolean loopback, AsciiString cluster)
Efficient way of checking whether another thread is already processing messages from sender.protected void
NAKACK4. send(Message msg, Buffer<Message> win)
protected void
ReliableMulticast. send(Message msg, Buffer<Message> win)
Adds the message to the sent_msgs table and then passes it down the stack.protected void
NAKACK4. sendAck(Address to, Buffer<Message> win)
protected void
ReliableMulticast. sendAck(Address to, Buffer<Message> win)
protected static long
ReliableMulticast. sizeOfAllMessages(Buffer<Message> win, boolean include_headers)
-
Uses of Buffer in org.jgroups.util
Subclasses of Buffer in org.jgroups.util Modifier and Type Class Description class
DynamicBuffer<T>
Copy ofTable
.class
FixedBuffer<T>
Ring buffer of fixed capacity.Methods in org.jgroups.util that return Buffer Modifier and Type Method Description Buffer<T>
Buffer. highestDelivered(long seqno)
Only used internally on a state transfer (setting the digest).
-