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. loopback(Address dest, Address sender, FastArray<Message> list)
protected void
PerDestinationBundler.SendBuffer. sendMessageList(Address dest, Address src, FastArray<Message> list, ByteArrayDataOutputStream out)
protected void
PerDestinationBundler.SendBuffer. sendMessages(Address dest, Address src, FastArray<Message> list)
protected void
PerDestinationBundler.SendBuffer. sendMultiple(Address dst, Address sender, FastArray<Message> list, ByteArrayDataOutputStream out)
-
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 elementprotected FastArray<Message>
MaxOneThreadPerSender.Entry. msg_queue
Methods 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. 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(T[] elements)
FastArray<T>
FastArray. trimTo(int new_capacity)
Attempts to reduce the current capacity to new_capacityMethods in org.jgroups.util with parameters of type FastArray Modifier and Type Method Description boolean
FastArray. addAll(FastArray<T> fa)
boolean
FastArray. addAll(FastArray<T> fa, boolean resize)
protected boolean
FastArray. equalsArrayList(FastArray<?> other)
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)
-