Interface ProofKeySetOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
All Known Implementing Classes:
ProofKeySet, ProofKeySet.Builder

@Generated public interface ProofKeySetOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    * The consensus time when the network adopted the active proof key in this set.
    com.google.protobuf.ByteString
    * The proof key the node is using.
    com.google.protobuf.ByteString
    * If set, the proof key the node wants to start using in the address book.
    boolean
    * The consensus time when the network adopted the active proof key in this set.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    getDefaultInstanceForType, isInitialized
  • Method Details

    • hasAdoptionTime

      boolean hasAdoptionTime()
       *
       The consensus time when the network adopted the active
       proof key in this set. An adoption time that is sufficiently
       tardy relative to the latest assembly start time may result
       in the node's key being omitted from the address book.
       
      .proto.Timestamp adoption_time = 2;
      Returns:
      Whether the adoptionTime field is set.
    • getAdoptionTime

      Timestamp getAdoptionTime()
       *
       The consensus time when the network adopted the active
       proof key in this set. An adoption time that is sufficiently
       tardy relative to the latest assembly start time may result
       in the node's key being omitted from the address book.
       
      .proto.Timestamp adoption_time = 2;
      Returns:
      The adoptionTime.
    • getKey

      com.google.protobuf.ByteString getKey()
       *
       The proof key the node is using.
       
      bytes key = 3;
      Returns:
      The key.
    • getNextKey

      com.google.protobuf.ByteString getNextKey()
       *
       If set, the proof key the node wants to start using in the
       address book.
       
      bytes next_key = 4;
      Returns:
      The nextKey.