Uses of Class
org.jgroups.util.FastArray
-
Packages that use FastArray 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 FastArray in org.jgroups.protocols
Fields in org.jgroups.protocols declared as FastArray Modifier and Type Field Description protected FastArray<Message>
PerDestinationBundler.SendBuffer. msgs
Methods in org.jgroups.protocols with parameters of type FastArray Modifier and Type Method Description protected void
PerDestinationBundler.SendBuffer. sendBatch(Address destination, FastArray<Message> list)
protected void
PerDestinationBundler.SendBuffer. sendMessageList(Address dest, Address src, FastArray<Message> list)
protected void
PerDestinationBundler.SendBuffer. sendMessages(Address dest, Address src, FastArray<Message> list)
-
Uses of FastArray in org.jgroups.util
Fields in org.jgroups.util declared as FastArray Modifier and Type Field Description protected FastArray<Message>
MessageBatch. messages
The storage of the messages; removed messages have a null elementMethods in org.jgroups.util that return FastArray Modifier and Type Method Description FastArray<Message>
MessageBatch. array()
Returns the underlying message array.FastArray<T>
FastArray. clear(boolean null_elements)
FastArray<T>
FastArray. increment(int i)
FastArray<T>
FastArray. printLimit(int l)
FastArray<T>
FastArray. remove(int idx)
FastArray<T>
FastArray. removeIf(java.util.function.Predicate<T> filter, boolean replace_all)
FastArray<T>
FastArray. replaceIf(java.util.function.Predicate<T> filter, T new_el, boolean replace_all)
Replaces any or all elements matching filter with a new elementFastArray<T>
FastArray. resize(int new_capacity)
FastArray<T>
FastArray. set(int idx, T el)
FastArray<T>
FastArray. set(T[] elements)
Methods in org.jgroups.util with parameters of type FastArray Modifier and Type Method Description int
FastArray. add(FastArray<T> fa)
int
FastArray. add(FastArray<T> fa, boolean resize)
int
FastArray. transferFrom(FastArray<T> other, boolean clear)
Copies the messages from the other array into this one,static void
Util. writeMessageList(Address dest, Address src, byte[] cluster_name, FastArray<Message> msgs, java.io.DataOutput dos, boolean multicast)
-