Package io.grpc.channelz.v1
Interface GetServersResponseOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder
,MessageOrBuilder
- All Known Implementing Classes:
GetServersResponse
,GetServersResponse.Builder
public interface GetServersResponseOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getEnd()
If set, indicates that the list of servers is the final list.Server
getServer(int index)
list of servers that the connection detail service knows about.int
getServerCount()
list of servers that the connection detail service knows about.List<Server>
getServerList()
list of servers that the connection detail service knows about.ServerOrBuilder
getServerOrBuilder(int index)
list of servers that the connection detail service knows about.List<? extends ServerOrBuilder>
getServerOrBuilderList()
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 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.
-
-