Uses of Class
org.jgroups.protocols.PingData
-
Packages that use PingData 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. -
-
Uses of PingData in org.jgroups.protocols
Fields in org.jgroups.protocols with type parameters of type PingData Modifier and Type Field Description protected static java.util.Map<java.lang.String,java.util.List<PingData>>
LOCAL_PING. discovery
Map of cluster names and address-protocol mappings.protected java.util.function.Consumer<PingData>
Discovery. discovery_rsp_callback
protected java.util.function.Consumer<PingData>
MERGE3. discovery_rsp_cb
protected static java.util.function.Function<java.lang.String,java.util.List<PingData>>
LOCAL_PING. FUNC
Methods in org.jgroups.protocols that return PingData Modifier and Type Method Description PingData
PingData. coord(boolean c)
PingData
PingData. mbrs(java.util.Collection<? extends Address> mbrs)
PingData
PingData. server(boolean c)
Methods in org.jgroups.protocols that return types with arguments of type PingData Modifier and Type Method Description java.util.function.Supplier<? extends PingData>
PingData. create()
static java.util.List<PingData>
Discovery. deserialize(byte[] data, int offset, int length)
static java.util.List<PingData>
SHARED_LOOPBACK. getDiscoveryResponsesFor(java.lang.String cluster_name)
protected java.util.List<PingData>
Discovery. read(java.io.InputStream in)
protected java.util.List<PingData>
FILE_PING. read(java.io.File file)
protected java.util.List<PingData>
FILE_PING. read(java.io.InputStream in)
protected java.util.List<PingData>
JDBC_PING2. readFromDB(java.lang.String cluster)
protected java.util.List<PingData>
Discovery. readPingData(byte[] buffer, int offset, int length)
Methods in org.jgroups.protocols with parameters of type PingData Modifier and Type Method Description protected void
Discovery. addResponse(PingData rsp, boolean overwrite)
protected void
JDBC_PING2. callInsertStoredProcedure(java.sql.Connection connection, PingData data, java.lang.String clustername)
protected void
Discovery. handleDiscoveryResponse(PingData data, Address sender)
protected void
JDBC_PING. insert(java.sql.Connection connection, PingData data, java.lang.String clustername, java.lang.String address)
protected void
JDBC_PING2. insert(java.sql.Connection connection, PingData data, java.lang.String clustername)
static ByteArray
Discovery. marshal(PingData data)
static ByteArray
Discovery. marshal(PingData... list)
protected void
MERGE3. sendInfoMessage(PingData data)
protected ByteArray
Discovery. serializeWithoutView(PingData data)
Creates a byte[] representation of the PingData, but DISCARDING the view it contains.protected void
JDBC_PING. writeToDB(PingData data, java.lang.String clustername, boolean overwrite)
protected void
JDBC_PING2. writeToDB(PingData data, java.lang.String clustername)
Method parameters in org.jgroups.protocols with type arguments of type PingData Modifier and Type Method Description protected void
Discovery. handleDiscoveryResponse(java.util.List<PingData> data, Address sender)
static ByteArray
Discovery. marshal(java.util.List<PingData> list)
void
TCPGOSSIP. members(java.util.List<PingData> mbrs)
protected static java.lang.String
Discovery. print(java.util.List<PingData> list)
protected void
Discovery. sendDiscoveryResponse(java.util.List<PingData> list, Address sender)
protected void
Discovery. write(java.util.List<PingData> list, java.io.OutputStream out)
protected void
FILE_PING. write(java.util.List<PingData> list, java.io.OutputStream out)
protected void
FILE_PING. write(java.util.List<PingData> list, java.lang.String clustername)
protected void
JDBC_PING. write(java.util.List<PingData> list, java.lang.String clustername)
protected void
JDBC_PING2. write(java.util.List<PingData> list, java.lang.String clustername)
protected void
RACKSPACE_PING. write(java.util.List<PingData> list, java.lang.String clustername)
protected void
SWIFT_PING. write(java.util.List<PingData> list, java.lang.String clustername)
-
Uses of PingData in org.jgroups.stack
Methods in org.jgroups.stack that return types with arguments of type PingData Modifier and Type Method Description java.util.List<PingData>
GossipData. getPingData()
Methods in org.jgroups.stack with parameters of type PingData Modifier and Type Method Description GossipData
GossipData. addPingData(PingData data)
Method parameters in org.jgroups.stack with type arguments of type PingData Modifier and Type Method Description void
RouterStub.MembersNotification. members(java.util.List<PingData> mbrs)
protected void
RouterStub. notifyResponse(java.lang.String group, java.util.List<PingData> list)
GossipData
GossipData. setPingData(java.util.List<PingData> mbrs)
Constructor parameters in org.jgroups.stack with type arguments of type PingData Constructor Description GossipData(GossipType type, java.lang.String group, Address addr, java.util.List<PingData> ping_data)
GossipData(GossipType type, java.lang.String group, Address addr, java.util.List<PingData> ping_data, PhysicalAddress physical_addr)
-
Uses of PingData in org.jgroups.util
Fields in org.jgroups.util declared as PingData Modifier and Type Field Description protected PingData[]
Responses.PingDataIterator. data
protected PingData[]
Responses. ping_rsps
Methods in org.jgroups.util that return PingData Modifier and Type Method Description PingData
Responses. findResponseFrom(Address mbr)
PingData
Responses.PingDataIterator. next()
Methods in org.jgroups.util that return types with arguments of type PingData Modifier and Type Method Description java.util.Iterator<PingData>
Responses. iterator()
protected java.util.List<PingData>
Responses. toList()
Methods in org.jgroups.util with parameters of type PingData Modifier and Type Method Description protected void
Responses. add(PingData data)
Responses
Responses. addResponse(PingData rsp, boolean overwrite)
protected int
Responses. find(PingData data)
Constructors in org.jgroups.util with parameters of type PingData Constructor Description PingDataIterator(PingData[] data, int end_index)
-