Interface Replication.StatusOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Replication.Status, Replication.Status.Builder
    Enclosing class:
    Replication

    public static interface Replication.StatusOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long getBegin()
      offset where replication should start
      boolean getClosed()
      will more data be appended to the file
      long getCreatedTime()
      when, in ms, was the file created?
      long getEnd()
      offset where data is ready for replication
      boolean getInfiniteEnd()
      do we have a discrete 'end'
      boolean hasBegin()
      offset where replication should start
      boolean hasClosed()
      will more data be appended to the file
      boolean hasCreatedTime()
      when, in ms, was the file created?
      boolean hasEnd()
      offset where data is ready for replication
      boolean hasInfiniteEnd()
      do we have a discrete 'end'
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • hasBegin

        boolean hasBegin()
         offset where replication should start
         
        optional int64 begin = 1 [default = 0];
        Returns:
        Whether the begin field is set.
      • getBegin

        long getBegin()
         offset where replication should start
         
        optional int64 begin = 1 [default = 0];
        Returns:
        The begin.
      • hasEnd

        boolean hasEnd()
         offset where data is ready for replication
         
        optional int64 end = 2 [default = 0];
        Returns:
        Whether the end field is set.
      • getEnd

        long getEnd()
         offset where data is ready for replication
         
        optional int64 end = 2 [default = 0];
        Returns:
        The end.
      • hasInfiniteEnd

        boolean hasInfiniteEnd()
         do we have a discrete 'end'
         
        optional bool infiniteEnd = 3 [default = false];
        Returns:
        Whether the infiniteEnd field is set.
      • getInfiniteEnd

        boolean getInfiniteEnd()
         do we have a discrete 'end'
         
        optional bool infiniteEnd = 3 [default = false];
        Returns:
        The infiniteEnd.
      • hasClosed

        boolean hasClosed()
         will more data be appended to the file
         
        optional bool closed = 4 [default = false];
        Returns:
        Whether the closed field is set.
      • getClosed

        boolean getClosed()
         will more data be appended to the file
         
        optional bool closed = 4 [default = false];
        Returns:
        The closed.
      • hasCreatedTime

        boolean hasCreatedTime()
         when, in ms, was the file created?
         
        optional int64 createdTime = 5 [default = 0];
        Returns:
        Whether the createdTime field is set.
      • getCreatedTime

        long getCreatedTime()
         when, in ms, was the file created?
         
        optional int64 createdTime = 5 [default = 0];
        Returns:
        The createdTime.