Package | Description |
---|---|
org.jgroups.protocols |
Provides implementations of transport protocols which are
responsible for sending and receiving messages to/from the network.
|
org.jgroups.stack |
Support for managing protocol stacks.
|
org.jgroups.util |
Provides useful functionality which cannot be assigned to any particular other package.
|
Modifier and Type | Field and Description |
---|---|
List |
Digest.msgs |
Modifier and Type | Method and Description |
---|---|
List |
NakReceiverWindow.getMessagesHigherThan(long seqno)
Return messages that are higher than
seqno (excluding
seqno ). |
List |
NakReceiverWindow.getMessagesInList(List missing_msgs)
Return a list of all messages for which there is a seqno in
missing_msgs . |
List |
NakReceiverWindow.getMessagesInRange(long lower,
long upper)
Return all messages m for which the following holds:
m > lower && m <= upper (excluding lower, including upper).
|
List |
NakReceiverWindow.getMissingMessages(long low,
long high)
Find all messages between 'low' and 'high' (including 'low' and
'high') that have a null msg.
|
Modifier and Type | Method and Description |
---|---|
List |
NakReceiverWindow.getMessagesInList(List missing_msgs)
Return a list of all messages for which there is a seqno in
missing_msgs . |
Modifier and Type | Class and Description |
---|---|
class |
BoundedList
A bounded subclass of List, oldest elements are removed once max capacity is exceeded
|
class |
Stack
LIFO stack, with better performance than java.util.Stack (based on List).
|
Modifier and Type | Method and Description |
---|---|
List |
List.copy() |
List |
Stack.copy() |
Modifier and Type | Method and Description |
---|---|
void |
Queue.addAll(List l) |
Copyright ? 1998-2006 Bela Ban. All Rights Reserved.