aboutsummaryrefslogtreecommitdiff
path: root/services/src/generated/main/java/io/grpc/channelz/v1/GetTopChannelsResponseOrBuilder.java
blob: f56d9ebf762d5585bdc0990123f84857fae388be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: io/grpc/channelz.proto

package io.grpc.channelz.v1;

public interface GetTopChannelsResponseOrBuilder extends
    // @@protoc_insertion_point(interface_extends:grpc.channelz.GetTopChannelsResponse)
    com.google.protobuf.MessageOrBuilder {

  /**
   * <pre>
   * list of channels that the connection detail service knows about.  Sorted in
   * ascending channel_id order.
   * </pre>
   *
   * <code>repeated .grpc.channelz.Channel channel = 1;</code>
   */
  java.util.List<io.grpc.channelz.v1.Channel> 
      getChannelList();
  /**
   * <pre>
   * list of channels that the connection detail service knows about.  Sorted in
   * ascending channel_id order.
   * </pre>
   *
   * <code>repeated .grpc.channelz.Channel channel = 1;</code>
   */
  io.grpc.channelz.v1.Channel getChannel(int index);
  /**
   * <pre>
   * list of channels that the connection detail service knows about.  Sorted in
   * ascending channel_id order.
   * </pre>
   *
   * <code>repeated .grpc.channelz.Channel channel = 1;</code>
   */
  int getChannelCount();
  /**
   * <pre>
   * list of channels that the connection detail service knows about.  Sorted in
   * ascending channel_id order.
   * </pre>
   *
   * <code>repeated .grpc.channelz.Channel channel = 1;</code>
   */
  java.util.List<? extends io.grpc.channelz.v1.ChannelOrBuilder> 
      getChannelOrBuilderList();
  /**
   * <pre>
   * list of channels that the connection detail service knows about.  Sorted in
   * ascending channel_id order.
   * </pre>
   *
   * <code>repeated .grpc.channelz.Channel channel = 1;</code>
   */
  io.grpc.channelz.v1.ChannelOrBuilder getChannelOrBuilder(
      int index);

  /**
   * <pre>
   * 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.
   * </pre>
   *
   * <code>bool end = 2;</code>
   */
  boolean getEnd();
}