Interface StreamMetastorePartitionsResponseOrBuilder

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

public interface StreamMetastorePartitionsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Total count of partitions inserted by the server during the lifetime of the stream.
    long
    Total count of partitions streamed by the client during the lifetime of the stream.

    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 Details

    • getTotalPartitionsStreamedCount

      long getTotalPartitionsStreamedCount()
       Total count of partitions streamed by the client during the lifetime of the
       stream. This is only set in the final response message before closing the
       stream.
       
      int64 total_partitions_streamed_count = 2;
      Returns:
      The totalPartitionsStreamedCount.
    • getTotalPartitionsInsertedCount

      long getTotalPartitionsInsertedCount()
       Total count of partitions inserted by the server during the lifetime of the
       stream. This is only set in the final response message before closing the
       stream.
       
      int64 total_partitions_inserted_count = 3;
      Returns:
      The totalPartitionsInsertedCount.