Interface GetServerSocketsResponseOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getEnd()
      If set, indicates that the list of sockets is the final list.
      SocketRef getSocketRef​(int index)
      list of socket refs that the connection detail service knows about.
      int getSocketRefCount()
      list of socket refs that the connection detail service knows about.
      java.util.List<SocketRef> getSocketRefList()
      list of socket refs that the connection detail service knows about.
      SocketRefOrBuilder getSocketRefOrBuilder​(int index)
      list of socket refs that the connection detail service knows about.
      java.util.List<? extends SocketRefOrBuilder> getSocketRefOrBuilderList()
      list of socket refs that the connection detail service knows about.
      • 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

      • getSocketRefList

        java.util.List<SocketRef> getSocketRefList()
         list of socket refs that the connection detail service knows about.  Sorted in
         ascending socket_id order.
         Must contain at least 1 result, otherwise 'end' must be true.
         
        repeated .grpc.channelz.v1.SocketRef socket_ref = 1;
      • getSocketRef

        SocketRef getSocketRef​(int index)
         list of socket refs that the connection detail service knows about.  Sorted in
         ascending socket_id order.
         Must contain at least 1 result, otherwise 'end' must be true.
         
        repeated .grpc.channelz.v1.SocketRef socket_ref = 1;
      • getSocketRefCount

        int getSocketRefCount()
         list of socket refs that the connection detail service knows about.  Sorted in
         ascending socket_id order.
         Must contain at least 1 result, otherwise 'end' must be true.
         
        repeated .grpc.channelz.v1.SocketRef socket_ref = 1;
      • getSocketRefOrBuilderList

        java.util.List<? extends SocketRefOrBuilder> getSocketRefOrBuilderList()
         list of socket refs that the connection detail service knows about.  Sorted in
         ascending socket_id order.
         Must contain at least 1 result, otherwise 'end' must be true.
         
        repeated .grpc.channelz.v1.SocketRef socket_ref = 1;
      • getSocketRefOrBuilder

        SocketRefOrBuilder getSocketRefOrBuilder​(int index)
         list of socket refs that the connection detail service knows about.  Sorted in
         ascending socket_id order.
         Must contain at least 1 result, otherwise 'end' must be true.
         
        repeated .grpc.channelz.v1.SocketRef socket_ref = 1;
      • getEnd

        boolean getEnd()
         If set, indicates that the list of sockets is the final list.  Requesting
         more sockets will only return more if they are created after this RPC
         completes.
         
        bool end = 2;
        Returns:
        The end.