aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/tests/interop/test.php
blob: fe6d0fb6c45d2c3dbe1ce7b0f5bd7d3fa527f03b (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
<?php
// DO NOT EDIT! Generated by Protobuf-PHP protoc plugin 1.0
// Source: third_party/stubby/testing/proto/test.proto
//   Date: 2014-12-03 22:02:20

namespace grpc\testing {

  class TestServiceClient extends \Grpc\BaseStub {
    /**
     * @param proto2\EmptyMessage $input
     * @return proto2\EmptyMessage
     */
    public function EmptyCall(\proto2\EmptyMessage $argument, $metadata = array()) {
      return $this->_simpleRequest('/TestService/EmptyCall', $argument, '\proto2\EmptyMessage::deserialize', $metadata);
    }
    /**
     * @param grpc\testing\SimpleRequest $input
     * @return grpc\testing\SimpleResponse
     */
    public function UnaryCall(\grpc\testing\SimpleRequest $argument, $metadata = array()) {
      return $this->_simpleRequest('/TestService/UnaryCall', $argument, '\grpc\testing\SimpleResponse::deserialize', $metadata);
    }
    /**
     * @param grpc\testing\StreamingOutputCallRequest $input
     * @return grpc\testing\StreamingOutputCallResponse
     */
    public function StreamingOutputCall($argument, $metadata = array()) {
      return $this->_serverStreamRequest('/TestService/StreamingOutputCall', $argument, '\grpc\testing\StreamingOutputCallResponse::deserialize', $metadata);
    }
    /**
     * @param grpc\testing\StreamingInputCallRequest $input
     * @return grpc\testing\StreamingInputCallResponse
     */
    public function StreamingInputCall($arguments, $metadata = array()) {
      return $this->_clientStreamRequest('/TestService/StreamingInputCall', $arguments, '\grpc\testing\StreamingInputCallResponse::deserialize', $metadata);
    }
    /**
     * @param grpc\testing\StreamingOutputCallRequest $input
     * @return grpc\testing\StreamingOutputCallResponse
     */
    public function FullDuplexCall($metadata = array()) {
      return $this->_bidiRequest('/TestService/FullDuplexCall', '\grpc\testing\StreamingOutputCallResponse::deserialize', $metadata);
    }
    /**
     * @param grpc\testing\StreamingOutputCallRequest $input
     * @return grpc\testing\StreamingOutputCallResponse
     */
    public function HalfDuplexCall($metadata = array()) {
      return $this->_bidiRequest('/TestService/HalfDuplexCall', '\grpc\testing\StreamingOutputCallResponse::deserialize', $metadata);
    }
  }
}