Class TimeSlicedNodeData

java.lang.Object
org.stellar.sdk.xdr.TimeSlicedNodeData
All Implemented Interfaces:
XdrElement

public class TimeSlicedNodeData extends Object implements XdrElement
TimeSlicedNodeData's original definition in the XDR file is:
 struct TimeSlicedNodeData
 {
     uint32 addedAuthenticatedPeers;
     uint32 droppedAuthenticatedPeers;
     uint32 totalInboundPeerCount;
     uint32 totalOutboundPeerCount;

     // SCP stats
     uint32 p75SCPFirstToSelfLatencyMs;
     uint32 p75SCPSelfToOtherLatencyMs;

     // How many times the node lost sync in the time slice
     uint32 lostSyncCount;

     // Config data
     bool isValidator;
     uint32 maxInboundPeerCount;
     uint32 maxOutboundPeerCount;
 };
 
  • Constructor Details

    • TimeSlicedNodeData

      public TimeSlicedNodeData()
    • TimeSlicedNodeData

      public TimeSlicedNodeData(Uint32 addedAuthenticatedPeers, Uint32 droppedAuthenticatedPeers, Uint32 totalInboundPeerCount, Uint32 totalOutboundPeerCount, Uint32 p75SCPFirstToSelfLatencyMs, Uint32 p75SCPSelfToOtherLatencyMs, Uint32 lostSyncCount, Boolean isValidator, Uint32 maxInboundPeerCount, Uint32 maxOutboundPeerCount)
  • Method Details