Download the PHP package larrythecoder/grpc without Composer
On this page you can find all versions of the php package larrythecoder/grpc. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download larrythecoder/grpc
More information about larrythecoder/grpc
Files in larrythecoder/grpc
Package grpc
Short Description gRPC library for PHP
License Apache-2.0
Homepage https://grpc.io
Informations about the package grpc
PHP-gRPC library
Unofficial work of PHP gRPC implementation for asynchronous calls. The implementation is taken from @arnaud-lb php-async branch.
Here lies the documentation to interact with my own grpc binding library.
Asynchronous calls
PHP does not have an event-loop. Thus, user-space event loop is required to check if a call is completed. The following
must be called periodically as a scheduled task. The first parameter in this method is the time allowed for the polling
mechanism to time-out, setting it to PHP_INT_MIN
will cause it to immediately process any events and return immediately
no more than O(1).
The completion queue will check if any calls is complete once.
Client gRPC calls
Currently, we support all types of user call. Thanks to the new asynchronous implementation, Bidirectional streaming is now possible over PHP without blocking the current executing thread (if the RPC is using asynchronous methods). The table below shows the supported service method via asynchronous or synchronous operations.
Service Method | Asynchronous | Synchronous |
---|---|---|
Unary RPC | Supported | Supported |
Server Streaming RPC | Supported | Supported |
Client Streaming RPC | Supported | Supported |
Bidirectional RPC | Supported | Supported |
All service method in PHP now requires a Callback to handle
messages received from the server. The callback method may return an object if documented, usually the object returned are
messages that was consumed from the server and/or a RpcCallStatus
that contains information about the RPC after completed.
Each AbstractCall
will now have an interface indicating that the call itself is either ClientCallInterface
and/or a
ServerCallInterface
, the implementing methods have similar implementation but a clear and concise documentation can be
referred in the interface itself.
Interface | Unary | Server Streaming | Client Streaming | Bidirectional |
---|---|---|---|---|
ServerCallInterface | Yes | Yes | No | Yes |
ClientCallInterface | No | No | Yes | Yes |
Unary Call
Unary call is the basic foundation of the HTTP protocol, a client send out a request, and they will expect an answer returned from the server. The code below is how the preferred way on how to start a Unary Call.
Server Streaming Call
For asynchronous operation, it is not required to start another onStreamNext
call. The logic is such that
the previous callback will be reused to consume the next message received.
However, for synchronous operation. it is required to start another onStreamNext
call after receiving a message
from the server. In other word, the previous callback will not be reused to consume the next message. The behaviour for
this method is different from an asynchronous operations because of how synchronous operations work.
Since the working thread will be blocked, having onStreamNext
to handle multiple messages from the server will prevent
other tasks from running. PHP is mostly consists of a single-thread that executes tasks, the option to wait for message
to be consumed from the server is very limited.
Therefore, developers will have to properly implement on how messages will be consumed to all ServerCallInterface
based on their requirements.
Client Streaming Call
A client streaming call is a service method that send messages to the server and the server will return a single response for us to consume/read. For both asynchronous and synchronous operations, below snippet can be used.
Bidirectional Streaming Call
A bidirectional streaming call is a combination of Client streaming method and Server streaming method, it typically used for long-lived streaming and/or processes that takes multiple input and output from client and the server. Either way, it depends on the use-cases and how you want it to be implemented.