Interface GetTopChannelsResponseOrBuilder

    • Method Detail

      • getChannelList

        java.util.List<Channel> getChannelList()
         list of channels that the connection detail service knows about.  Sorted in
         ascending channel_id order.
         Must contain at least 1 result, otherwise 'end' must be true.
         
        repeated .grpc.channelz.v1.Channel channel = 1;
      • getChannel

        Channel getChannel​(int index)
         list of channels that the connection detail service knows about.  Sorted in
         ascending channel_id order.
         Must contain at least 1 result, otherwise 'end' must be true.
         
        repeated .grpc.channelz.v1.Channel channel = 1;
      • getChannelCount

        int getChannelCount()
         list of channels that the connection detail service knows about.  Sorted in
         ascending channel_id order.
         Must contain at least 1 result, otherwise 'end' must be true.
         
        repeated .grpc.channelz.v1.Channel channel = 1;
      • getChannelOrBuilderList

        java.util.List<? extends ChannelOrBuilder> getChannelOrBuilderList()
         list of channels that the connection detail service knows about.  Sorted in
         ascending channel_id order.
         Must contain at least 1 result, otherwise 'end' must be true.
         
        repeated .grpc.channelz.v1.Channel channel = 1;
      • getChannelOrBuilder

        ChannelOrBuilder getChannelOrBuilder​(int index)
         list of channels that the connection detail service knows about.  Sorted in
         ascending channel_id order.
         Must contain at least 1 result, otherwise 'end' must be true.
         
        repeated .grpc.channelz.v1.Channel channel = 1;
      • getEnd

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