Class PeersResponse
- java.lang.Object
-
- org.elasticsearch.transport.TransportMessage
-
- org.elasticsearch.transport.TransportResponse
-
- org.elasticsearch.cluster.coordination.PeersResponse
-
- All Implemented Interfaces:
Writeable
public class PeersResponse extends TransportResponse
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.elasticsearch.transport.TransportResponse
TransportResponse.Empty
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
-
Constructor Summary
Constructors Constructor Description PeersResponse(Optional<DiscoveryNode> masterNode, List<DiscoveryNode> knownPeers, long term)PeersResponse(StreamInput in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)List<DiscoveryNode>getKnownPeers()Optional<DiscoveryNode>getMasterNode()longgetTerm()inthashCode()StringtoString()voidwriteTo(StreamOutput out)Write this into the StreamOutput.-
Methods inherited from class org.elasticsearch.transport.TransportMessage
remoteAddress, remoteAddress
-
-
-
-
Constructor Detail
-
PeersResponse
public PeersResponse(Optional<DiscoveryNode> masterNode, List<DiscoveryNode> knownPeers, long term)
-
PeersResponse
public PeersResponse(StreamInput in) throws IOException
- Throws:
IOException
-
-
Method Detail
-
writeTo
public void writeTo(StreamOutput out) throws IOException
Description copied from interface:WriteableWrite this into the StreamOutput.- Throws:
IOException
-
getMasterNode
public Optional<DiscoveryNode> getMasterNode()
- Returns:
- the node that is currently leading, according to the responding node.
-
getKnownPeers
public List<DiscoveryNode> getKnownPeers()
- Returns:
- the collection of known peers of the responding node, or an empty collection if the responding node believes there is currently a leader.
-
getTerm
public long getTerm()
- Returns:
- the current term of the responding node. If the responding node is the leader then this is the term in which it is currently leading.
-
-