Package io.grpc.channelz.v1
Interface GetServersResponseOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GetServersResponse
,GetServersResponse.Builder
public interface GetServersResponseOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionboolean
getEnd()
If set, indicates that the list of servers is the final list.getServer
(int index) list of servers that the connection detail service knows about.int
list of servers that the connection detail service knows about.list of servers that the connection detail service knows about.getServerOrBuilder
(int index) list of servers that the connection detail service knows about.List
<? extends ServerOrBuilder> list of servers 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 Details
-
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
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
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.
-