summaryrefslogtreecommitdiff
path: root/java/com/android/voicemail/impl/VoicemailTranscriptionServiceGrpc.java
blob: f6a00f6d6f9310f9785b379e4a3d58033616db24 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License
 */

package com.google.internal.communications.voicemailtranscription.v1;

import static io.grpc.stub.ClientCalls.asyncUnaryCall;
import static io.grpc.stub.ClientCalls.asyncServerStreamingCall;
import static io.grpc.stub.ClientCalls.asyncClientStreamingCall;
import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall;
import static io.grpc.stub.ClientCalls.blockingUnaryCall;
import static io.grpc.stub.ClientCalls.blockingServerStreamingCall;
import static io.grpc.stub.ClientCalls.futureUnaryCall;
import static io.grpc.MethodDescriptor.generateFullMethodName;
import static io.grpc.stub.ServerCalls.asyncUnaryCall;
import static io.grpc.stub.ServerCalls.asyncServerStreamingCall;
import static io.grpc.stub.ServerCalls.asyncClientStreamingCall;
import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall;
import static io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall;
import static io.grpc.stub.ServerCalls.asyncUnimplementedStreamingCall;

/**
 * <pre>
 * RPC service for transcribing voicemails.
 * </pre>
 */
@javax.annotation.Generated(
    value = "by gRPC proto compiler (version 1.0.3)",
    comments = "Source: voicemail_transcription.proto")
public class VoicemailTranscriptionServiceGrpc {

  private VoicemailTranscriptionServiceGrpc() {}

  public static final String SERVICE_NAME = "google.internal.communications.voicemailtranscription.v1.VoicemailTranscriptionService";

  // Static method descriptors that strictly reflect the proto.
  @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/1901")
  public static final io.grpc.MethodDescriptor<com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailRequest,
      com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailResponse> METHOD_TRANSCRIBE_VOICEMAIL =
      io.grpc.MethodDescriptor.create(
          io.grpc.MethodDescriptor.MethodType.UNARY,
          generateFullMethodName(
              "google.internal.communications.voicemailtranscription.v1.VoicemailTranscriptionService", "TranscribeVoicemail"),
          io.grpc.protobuf.lite.ProtoLiteUtils.marshaller(com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailRequest.getDefaultInstance()),
          io.grpc.protobuf.lite.ProtoLiteUtils.marshaller(com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailResponse.getDefaultInstance()));
  @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/1901")
  public static final io.grpc.MethodDescriptor<com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncRequest,
      com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncResponse> METHOD_TRANSCRIBE_VOICEMAIL_ASYNC =
      io.grpc.MethodDescriptor.create(
          io.grpc.MethodDescriptor.MethodType.UNARY,
          generateFullMethodName(
              "google.internal.communications.voicemailtranscription.v1.VoicemailTranscriptionService", "TranscribeVoicemailAsync"),
          io.grpc.protobuf.lite.ProtoLiteUtils.marshaller(com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncRequest.getDefaultInstance()),
          io.grpc.protobuf.lite.ProtoLiteUtils.marshaller(com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncResponse.getDefaultInstance()));
  @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/1901")
  public static final io.grpc.MethodDescriptor<com.google.internal.communications.voicemailtranscription.v1.GetTranscriptRequest,
      com.google.internal.communications.voicemailtranscription.v1.GetTranscriptResponse> METHOD_GET_TRANSCRIPT =
      io.grpc.MethodDescriptor.create(
          io.grpc.MethodDescriptor.MethodType.UNARY,
          generateFullMethodName(
              "google.internal.communications.voicemailtranscription.v1.VoicemailTranscriptionService", "GetTranscript"),
          io.grpc.protobuf.lite.ProtoLiteUtils.marshaller(com.google.internal.communications.voicemailtranscription.v1.GetTranscriptRequest.getDefaultInstance()),
          io.grpc.protobuf.lite.ProtoLiteUtils.marshaller(com.google.internal.communications.voicemailtranscription.v1.GetTranscriptResponse.getDefaultInstance()));
  @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/1901")
  public static final io.grpc.MethodDescriptor<com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackRequest,
      com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackResponse> METHOD_SEND_TRANSCRIPTION_FEEDBACK =
      io.grpc.MethodDescriptor.create(
          io.grpc.MethodDescriptor.MethodType.UNARY,
          generateFullMethodName(
              "google.internal.communications.voicemailtranscription.v1.VoicemailTranscriptionService", "SendTranscriptionFeedback"),
          io.grpc.protobuf.lite.ProtoLiteUtils.marshaller(com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackRequest.getDefaultInstance()),
          io.grpc.protobuf.lite.ProtoLiteUtils.marshaller(com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackResponse.getDefaultInstance()));

  /**
   * Creates a new async stub that supports all call types for the service
   */
  public static VoicemailTranscriptionServiceStub newStub(io.grpc.Channel channel) {
    return new VoicemailTranscriptionServiceStub(channel);
  }

  /**
   * Creates a new blocking-style stub that supports unary and streaming output calls on the service
   */
  public static VoicemailTranscriptionServiceBlockingStub newBlockingStub(
      io.grpc.Channel channel) {
    return new VoicemailTranscriptionServiceBlockingStub(channel);
  }

  /**
   * Creates a new ListenableFuture-style stub that supports unary and streaming output calls on the service
   */
  public static VoicemailTranscriptionServiceFutureStub newFutureStub(
      io.grpc.Channel channel) {
    return new VoicemailTranscriptionServiceFutureStub(channel);
  }

  /**
   * <pre>
   * RPC service for transcribing voicemails.
   * </pre>
   */
  public static abstract class VoicemailTranscriptionServiceImplBase implements io.grpc.BindableService {

    /**
     * <pre>
     * Returns a transcript of the given voicemail.
     * </pre>
     */
    public void transcribeVoicemail(com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailRequest request,
        io.grpc.stub.StreamObserver<com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailResponse> responseObserver) {
      asyncUnimplementedUnaryCall(METHOD_TRANSCRIBE_VOICEMAIL, responseObserver);
    }

    /**
     * <pre>
     * Schedules a transcription of the given voicemail. The transcript can be
     * retrieved using the returned ID.
     * </pre>
     */
    public void transcribeVoicemailAsync(com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncRequest request,
        io.grpc.stub.StreamObserver<com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncResponse> responseObserver) {
      asyncUnimplementedUnaryCall(METHOD_TRANSCRIBE_VOICEMAIL_ASYNC, responseObserver);
    }

    /**
     * <pre>
     * Returns the transcript corresponding to the given ID, which was returned
     * by TranscribeVoicemailAsync.
     * </pre>
     */
    public void getTranscript(com.google.internal.communications.voicemailtranscription.v1.GetTranscriptRequest request,
        io.grpc.stub.StreamObserver<com.google.internal.communications.voicemailtranscription.v1.GetTranscriptResponse> responseObserver) {
      asyncUnimplementedUnaryCall(METHOD_GET_TRANSCRIPT, responseObserver);
    }

    /**
     * <pre>
     * Uploads user's transcription feedback. Feedback will only be collected from
     * user's who have consented to donate their voicemails.
     * </pre>
     */
    public void sendTranscriptionFeedback(com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackRequest request,
        io.grpc.stub.StreamObserver<com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackResponse> responseObserver) {
      asyncUnimplementedUnaryCall(METHOD_SEND_TRANSCRIPTION_FEEDBACK, responseObserver);
    }

    @java.lang.Override public io.grpc.ServerServiceDefinition bindService() {
      return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
          .addMethod(
            METHOD_TRANSCRIBE_VOICEMAIL,
            asyncUnaryCall(
              new MethodHandlers<
                com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailRequest,
                com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailResponse>(
                  this, METHODID_TRANSCRIBE_VOICEMAIL)))
          .addMethod(
            METHOD_TRANSCRIBE_VOICEMAIL_ASYNC,
            asyncUnaryCall(
              new MethodHandlers<
                com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncRequest,
                com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncResponse>(
                  this, METHODID_TRANSCRIBE_VOICEMAIL_ASYNC)))
          .addMethod(
            METHOD_GET_TRANSCRIPT,
            asyncUnaryCall(
              new MethodHandlers<
                com.google.internal.communications.voicemailtranscription.v1.GetTranscriptRequest,
                com.google.internal.communications.voicemailtranscription.v1.GetTranscriptResponse>(
                  this, METHODID_GET_TRANSCRIPT)))
          .addMethod(
            METHOD_SEND_TRANSCRIPTION_FEEDBACK,
            asyncUnaryCall(
              new MethodHandlers<
                com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackRequest,
                com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackResponse>(
                  this, METHODID_SEND_TRANSCRIPTION_FEEDBACK)))
          .build();
    }
  }

  /**
   * <pre>
   * RPC service for transcribing voicemails.
   * </pre>
   */
  public static final class VoicemailTranscriptionServiceStub extends io.grpc.stub.AbstractStub<VoicemailTranscriptionServiceStub> {
    private VoicemailTranscriptionServiceStub(io.grpc.Channel channel) {
      super(channel);
    }

    private VoicemailTranscriptionServiceStub(io.grpc.Channel channel,
        io.grpc.CallOptions callOptions) {
      super(channel, callOptions);
    }

    @java.lang.Override
    protected VoicemailTranscriptionServiceStub build(io.grpc.Channel channel,
        io.grpc.CallOptions callOptions) {
      return new VoicemailTranscriptionServiceStub(channel, callOptions);
    }

    /**
     * <pre>
     * Returns a transcript of the given voicemail.
     * </pre>
     */
    public void transcribeVoicemail(com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailRequest request,
        io.grpc.stub.StreamObserver<com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailResponse> responseObserver) {
      asyncUnaryCall(
          getChannel().newCall(METHOD_TRANSCRIBE_VOICEMAIL, getCallOptions()), request, responseObserver);
    }

    /**
     * <pre>
     * Schedules a transcription of the given voicemail. The transcript can be
     * retrieved using the returned ID.
     * </pre>
     */
    public void transcribeVoicemailAsync(com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncRequest request,
        io.grpc.stub.StreamObserver<com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncResponse> responseObserver) {
      asyncUnaryCall(
          getChannel().newCall(METHOD_TRANSCRIBE_VOICEMAIL_ASYNC, getCallOptions()), request, responseObserver);
    }

    /**
     * <pre>
     * Returns the transcript corresponding to the given ID, which was returned
     * by TranscribeVoicemailAsync.
     * </pre>
     */
    public void getTranscript(com.google.internal.communications.voicemailtranscription.v1.GetTranscriptRequest request,
        io.grpc.stub.StreamObserver<com.google.internal.communications.voicemailtranscription.v1.GetTranscriptResponse> responseObserver) {
      asyncUnaryCall(
          getChannel().newCall(METHOD_GET_TRANSCRIPT, getCallOptions()), request, responseObserver);
    }

    /**
     * <pre>
     * Uploads user's transcription feedback. Feedback will only be collected from
     * user's who have consented to donate their voicemails.
     * </pre>
     */
    public void sendTranscriptionFeedback(com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackRequest request,
        io.grpc.stub.StreamObserver<com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackResponse> responseObserver) {
      asyncUnaryCall(
          getChannel().newCall(METHOD_SEND_TRANSCRIPTION_FEEDBACK, getCallOptions()), request, responseObserver);
    }
  }

  /**
   * <pre>
   * RPC service for transcribing voicemails.
   * </pre>
   */
  public static final class VoicemailTranscriptionServiceBlockingStub extends io.grpc.stub.AbstractStub<VoicemailTranscriptionServiceBlockingStub> {
    private VoicemailTranscriptionServiceBlockingStub(io.grpc.Channel channel) {
      super(channel);
    }

    private VoicemailTranscriptionServiceBlockingStub(io.grpc.Channel channel,
        io.grpc.CallOptions callOptions) {
      super(channel, callOptions);
    }

    @java.lang.Override
    protected VoicemailTranscriptionServiceBlockingStub build(io.grpc.Channel channel,
        io.grpc.CallOptions callOptions) {
      return new VoicemailTranscriptionServiceBlockingStub(channel, callOptions);
    }

    /**
     * <pre>
     * Returns a transcript of the given voicemail.
     * </pre>
     */
    public com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailResponse transcribeVoicemail(com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailRequest request) {
      return blockingUnaryCall(
          getChannel(), METHOD_TRANSCRIBE_VOICEMAIL, getCallOptions(), request);
    }

    /**
     * <pre>
     * Schedules a transcription of the given voicemail. The transcript can be
     * retrieved using the returned ID.
     * </pre>
     */
    public com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncResponse transcribeVoicemailAsync(com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncRequest request) {
      return blockingUnaryCall(
          getChannel(), METHOD_TRANSCRIBE_VOICEMAIL_ASYNC, getCallOptions(), request);
    }

    /**
     * <pre>
     * Returns the transcript corresponding to the given ID, which was returned
     * by TranscribeVoicemailAsync.
     * </pre>
     */
    public com.google.internal.communications.voicemailtranscription.v1.GetTranscriptResponse getTranscript(com.google.internal.communications.voicemailtranscription.v1.GetTranscriptRequest request) {
      return blockingUnaryCall(
          getChannel(), METHOD_GET_TRANSCRIPT, getCallOptions(), request);
    }

    /**
     * <pre>
     * Uploads user's transcription feedback. Feedback will only be collected from
     * user's who have consented to donate their voicemails.
     * </pre>
     */
    public com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackResponse sendTranscriptionFeedback(com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackRequest request) {
      return blockingUnaryCall(
          getChannel(), METHOD_SEND_TRANSCRIPTION_FEEDBACK, getCallOptions(), request);
    }
  }

  /**
   * <pre>
   * RPC service for transcribing voicemails.
   * </pre>
   */
  public static final class VoicemailTranscriptionServiceFutureStub extends io.grpc.stub.AbstractStub<VoicemailTranscriptionServiceFutureStub> {
    private VoicemailTranscriptionServiceFutureStub(io.grpc.Channel channel) {
      super(channel);
    }

    private VoicemailTranscriptionServiceFutureStub(io.grpc.Channel channel,
        io.grpc.CallOptions callOptions) {
      super(channel, callOptions);
    }

    @java.lang.Override
    protected VoicemailTranscriptionServiceFutureStub build(io.grpc.Channel channel,
        io.grpc.CallOptions callOptions) {
      return new VoicemailTranscriptionServiceFutureStub(channel, callOptions);
    }

    /**
     * <pre>
     * Returns a transcript of the given voicemail.
     * </pre>
     */
    public com.google.common.util.concurrent.ListenableFuture<com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailResponse> transcribeVoicemail(
        com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailRequest request) {
      return futureUnaryCall(
          getChannel().newCall(METHOD_TRANSCRIBE_VOICEMAIL, getCallOptions()), request);
    }

    /**
     * <pre>
     * Schedules a transcription of the given voicemail. The transcript can be
     * retrieved using the returned ID.
     * </pre>
     */
    public com.google.common.util.concurrent.ListenableFuture<com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncResponse> transcribeVoicemailAsync(
        com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncRequest request) {
      return futureUnaryCall(
          getChannel().newCall(METHOD_TRANSCRIBE_VOICEMAIL_ASYNC, getCallOptions()), request);
    }

    /**
     * <pre>
     * Returns the transcript corresponding to the given ID, which was returned
     * by TranscribeVoicemailAsync.
     * </pre>
     */
    public com.google.common.util.concurrent.ListenableFuture<com.google.internal.communications.voicemailtranscription.v1.GetTranscriptResponse> getTranscript(
        com.google.internal.communications.voicemailtranscription.v1.GetTranscriptRequest request) {
      return futureUnaryCall(
          getChannel().newCall(METHOD_GET_TRANSCRIPT, getCallOptions()), request);
    }

    /**
     * <pre>
     * Uploads user's transcription feedback. Feedback will only be collected from
     * user's who have consented to donate their voicemails.
     * </pre>
     */
    public com.google.common.util.concurrent.ListenableFuture<com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackResponse> sendTranscriptionFeedback(
        com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackRequest request) {
      return futureUnaryCall(
          getChannel().newCall(METHOD_SEND_TRANSCRIPTION_FEEDBACK, getCallOptions()), request);
    }
  }

  private static final int METHODID_TRANSCRIBE_VOICEMAIL = 0;
  private static final int METHODID_TRANSCRIBE_VOICEMAIL_ASYNC = 1;
  private static final int METHODID_GET_TRANSCRIPT = 2;
  private static final int METHODID_SEND_TRANSCRIPTION_FEEDBACK = 3;

  private static class MethodHandlers<Req, Resp> implements
      io.grpc.stub.ServerCalls.UnaryMethod<Req, Resp>,
      io.grpc.stub.ServerCalls.ServerStreamingMethod<Req, Resp>,
      io.grpc.stub.ServerCalls.ClientStreamingMethod<Req, Resp>,
      io.grpc.stub.ServerCalls.BidiStreamingMethod<Req, Resp> {
    private final VoicemailTranscriptionServiceImplBase serviceImpl;
    private final int methodId;

    public MethodHandlers(VoicemailTranscriptionServiceImplBase serviceImpl, int methodId) {
      this.serviceImpl = serviceImpl;
      this.methodId = methodId;
    }

    @java.lang.Override
    @java.lang.SuppressWarnings("unchecked")
    public void invoke(Req request, io.grpc.stub.StreamObserver<Resp> responseObserver) {
      switch (methodId) {
        case METHODID_TRANSCRIBE_VOICEMAIL:
          serviceImpl.transcribeVoicemail((com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailRequest) request,
              (io.grpc.stub.StreamObserver<com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailResponse>) responseObserver);
          break;
        case METHODID_TRANSCRIBE_VOICEMAIL_ASYNC:
          serviceImpl.transcribeVoicemailAsync((com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncRequest) request,
              (io.grpc.stub.StreamObserver<com.google.internal.communications.voicemailtranscription.v1.TranscribeVoicemailAsyncResponse>) responseObserver);
          break;
        case METHODID_GET_TRANSCRIPT:
          serviceImpl.getTranscript((com.google.internal.communications.voicemailtranscription.v1.GetTranscriptRequest) request,
              (io.grpc.stub.StreamObserver<com.google.internal.communications.voicemailtranscription.v1.GetTranscriptResponse>) responseObserver);
          break;
        case METHODID_SEND_TRANSCRIPTION_FEEDBACK:
          serviceImpl.sendTranscriptionFeedback((com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackRequest) request,
              (io.grpc.stub.StreamObserver<com.google.internal.communications.voicemailtranscription.v1.SendTranscriptionFeedbackResponse>) responseObserver);
          break;
        default:
          throw new AssertionError();
      }
    }

    @java.lang.Override
    @java.lang.SuppressWarnings("unchecked")
    public io.grpc.stub.StreamObserver<Req> invoke(
        io.grpc.stub.StreamObserver<Resp> responseObserver) {
      switch (methodId) {
        default:
          throw new AssertionError();
      }
    }
  }

  public static io.grpc.ServiceDescriptor getServiceDescriptor() {
    return new io.grpc.ServiceDescriptor(SERVICE_NAME,
        METHOD_TRANSCRIBE_VOICEMAIL,
        METHOD_TRANSCRIBE_VOICEMAIL_ASYNC,
        METHOD_GET_TRANSCRIPT,
        METHOD_SEND_TRANSCRIPTION_FEEDBACK);
  }

}