1<?php
2# Generated by the protocol buffer compiler.  DO NOT EDIT!
3# source: src/proto/grpc/testing/control.proto
4
5namespace Grpc\Testing;
6
7/**
8 * Protobuf enum <code>Grpc\Testing\ClientType</code>
9 */
10class ClientType
11{
12    /**
13     * Many languages support a basic distinction between using
14     * sync or async client, and this allows the specification
15     *
16     * Generated from protobuf enum <code>SYNC_CLIENT = 0;</code>
17     */
18    const SYNC_CLIENT = 0;
19    /**
20     * Generated from protobuf enum <code>ASYNC_CLIENT = 1;</code>
21     */
22    const ASYNC_CLIENT = 1;
23    /**
24     * used for some language-specific variants
25     *
26     * Generated from protobuf enum <code>OTHER_CLIENT = 2;</code>
27     */
28    const OTHER_CLIENT = 2;
29}
30
31