blob: 13e58daffe4cdbb48a71f539000df31846859511 (
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
|
<?php
# Generated by the protocol buffer compiler (spiral/php-grpc). DO NOT EDIT!
# source: import/service.proto
namespace Import;
use Spiral\GRPC;
use Import\Sub;
interface ServiceInterface extends GRPC\ServiceInterface
{
// GRPC specific service name.
public const NAME = "import.Service";
/**
* @param GRPC\ContextInterface $ctx
* @param Message $in
* @return Message
*
* @throws GRPC\Exception\InvokeException
*/
public function SimpleMethod(GRPC\ContextInterface $ctx, Message $in): Message;
/**
* @param GRPC\ContextInterface $ctx
* @param Sub\Message $in
* @return Sub\Message
*
* @throws GRPC\Exception\InvokeException
*/
public function ImportMethod(GRPC\ContextInterface $ctx, Sub\Message $in): Sub\Message;
}
|