Interface GetServersResponseOrBuilder

    • Method Detail

      • getServerList

        List<Server> getServerList()
         list of servers that the connection detail service knows about.  Sorted in
         ascending server_id order.
         Must contain at least 1 result, otherwise 'end' must be true.
         
        repeated .grpc.channelz.v1.Server server = 1;
      • getServer

        Server getServer​(int index)
         list of servers that the connection detail service knows about.  Sorted in
         ascending server_id order.
         Must contain at least 1 result, otherwise 'end' must be true.
         
        repeated .grpc.channelz.v1.Server server = 1;
      • getServerCount

        int getServerCount()
         list of servers that the connection detail service knows about.  Sorted in
         ascending server_id order.
         Must contain at least 1 result, otherwise 'end' must be true.
         
        repeated .grpc.channelz.v1.Server server = 1;
      • getServerOrBuilderList

        List<? extends ServerOrBuilder> getServerOrBuilderList()
         list of servers that the connection detail service knows about.  Sorted in
         ascending server_id order.
         Must contain at least 1 result, otherwise 'end' must be true.
         
        repeated .grpc.channelz.v1.Server server = 1;
      • getServerOrBuilder

        ServerOrBuilder getServerOrBuilder​(int index)
         list of servers that the connection detail service knows about.  Sorted in
         ascending server_id order.
         Must contain at least 1 result, otherwise 'end' must be true.
         
        repeated .grpc.channelz.v1.Server server = 1;
      • getEnd

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