Uses of Class
org.jgroups.ViewId
-
Packages that use ViewId Package Description org.jgroups Provides top-level public JGroups classes such as Channel, Message, etc.org.jgroups.protocols Provides implementations of transport protocols which are responsible for sending and receiving messages to/from the network.org.jgroups.protocols.pbcast org.jgroups.util Provides useful functionality which cannot be assigned to any particular other package. -
-
Uses of ViewId in org.jgroups
Fields in org.jgroups declared as ViewId Modifier and Type Field Description protected ViewId
View. view_id
A view is uniquely identified by its ViewID.Methods in org.jgroups that return ViewId Modifier and Type Method Description ViewId
ViewId. copy()
ViewId
View. getViewId()
Returns the view ID of this view if this view was created with the empty constructur, null will be returnedMethods in org.jgroups that return types with arguments of type ViewId Modifier and Type Method Description java.util.function.Supplier<? extends ViewId>
ViewId. create()
Methods in org.jgroups with parameters of type ViewId Modifier and Type Method Description int
ViewId. compareTo(ViewId other)
Establishes an order between 2 ViewIds.int
ViewId. compareToIDs(ViewId other)
Establishes an order between 2 ViewIds.Constructors in org.jgroups with parameters of type ViewId Constructor Description MergeView(ViewId view_id, java.util.List<Address> members, java.util.List<View> subgroups)
Creates a new merge viewMergeView(ViewId view_id, Address[] members, java.util.List<View> subgroups)
View(ViewId view_id, java.util.Collection<Address> members)
Creates a new viewView(ViewId view_id, Address[] members)
Creates a new view. -
Uses of ViewId in org.jgroups.protocols
Fields in org.jgroups.protocols declared as ViewId Modifier and Type Field Description protected ViewId
MERGE3.MergeHeader. view_id
Fields in org.jgroups.protocols with type parameters of type ViewId Modifier and Type Field Description protected java.util.Map<Address,ViewId>
MERGE3. views
Methods in org.jgroups.protocols that return ViewId Modifier and Type Method Description ViewId
Discovery. getViewId()
Methods in org.jgroups.protocols that return types with arguments of type ViewId Modifier and Type Method Description protected java.util.Map<ViewId,java.util.Set<Address>>
MERGE3. convertViews()
Methods in org.jgroups.protocols with parameters of type ViewId Modifier and Type Method Description protected void
MERGE3. addInfo(Address sender, ViewId view_id, java.lang.String logical_name, PhysicalAddress physical_addr)
Adds received INFO to views hashmapstatic MERGE3.MergeHeader
MERGE3.MergeHeader. createInfo(ViewId view_id, java.lang.String logical_name, PhysicalAddress physical_addr)
Constructors in org.jgroups.protocols with parameters of type ViewId Constructor Description MergeHeader(MERGE3.MergeHeader.Type type, ViewId view_id, java.lang.String logical_name, PhysicalAddress physical_addr)
-
Uses of ViewId in org.jgroups.protocols.pbcast
Fields in org.jgroups.protocols.pbcast declared as ViewId Modifier and Type Field Description protected ViewId
DeltaView. ref_view_id
The fields left_members and new_members refer to the view corresponding to ref_view_idprotected ViewId
STABLE.StableHeader. view_id
Methods in org.jgroups.protocols.pbcast that return ViewId Modifier and Type Method Description ViewId
DeltaView. getRefViewId()
ViewId
GMS. getViewId()
protected ViewId
GMS. readViewId(byte[] buffer, int offset, int length)
Methods in org.jgroups.protocols.pbcast with parameters of type ViewId Modifier and Type Method Description protected void
STABLE. handleStabilityMessage(Digest stable_digest, Address sender, ViewId view_id)
protected void
STABLE. handleStableMessage(Digest d, Address sender, ViewId view_id)
Digest d contains (a) the highest seqnos deliverable for each sender and (b) the highest seqnos seen for each member.protected static Buffer
GMS. marshal(ViewId view_id)
protected void
STABLE. sendStabilityMessage(Digest d, ViewId view_id)
Sends a stability message to all members except self.Constructors in org.jgroups.protocols.pbcast with parameters of type ViewId Constructor Description DeltaView(ViewId view_id, ViewId ref_view_id, Address[] left_members, Address[] new_members)
StableHeader(byte type, ViewId view_id)
-
Uses of ViewId in org.jgroups.util
Methods in org.jgroups.util that return ViewId Modifier and Type Method Description static ViewId
Util. readViewId(java.io.DataInput in)
Methods in org.jgroups.util with parameters of type ViewId Modifier and Type Method Description static boolean
Util. containsViewId(java.util.Collection<View> views, ViewId vid)
static int
Util. size(ViewId vid)
static void
Util. writeViewId(ViewId vid, java.io.DataOutput out)
-