GRPC PHP  1.83.0
Data Structures | Variables
Grpc Namespace Reference

Class AbstractCall. More...

Data Structures

class  AbstractCall
 
class  BaseStub
 Base class for generated client stubs. More...
 
class  BidiStreamingCall
 Represents an active call that allows for sending and receiving messages in streams in any order. More...
 
class  Call
 class Call More...
 
class  CallCredentials
 class CallCredentials More...
 
interface  CallInvoker
 CallInvoker is used to pass the self defined channel into the stub, while intercept each RPC with the channel accessible. More...
 
class  Channel
 class Channel More...
 
class  ChannelCredentials
 class ChannelCredentials More...
 
class  ClientStreamingCall
 Represents an active call that sends a stream of messages and then gets a single response. More...
 
class  DefaultCallInvoker
 Default call invoker in the gRPC stub. More...
 
class  Interceptor
 Represents an interceptor that intercept RPC invocations before call starts. More...
 
class  MethodDescriptor
 This is an experimental and incomplete implementation of gRPC server for PHP. More...
 
class  RpcServer
 
class  Server
 class Server More...
 
class  ServerCallReader
 This is an experimental and incomplete implementation of gRPC server for PHP. More...
 
class  ServerCallWriter
 This is an experimental and incomplete implementation of gRPC server for PHP. More...
 
class  ServerContext
 This is an experimental and incomplete implementation of gRPC server for PHP. More...
 
class  ServerCredentials
 class ServerCredentials More...
 
class  ServerStreamingCall
 Represents an active call that sends a single message and then gets a stream of responses. More...
 
class  Status
 
class  Timeval
 class Timeval More...
 
class  UnaryCall
 Represents an active call that sends a single message and then gets a single response. More...
 

Variables

const CALL_OK
 everything went ok More...
 
const CALL_ERROR
 something failed, we don't know what More...
 
const CALL_ERROR_NOT_ON_SERVER
 this method is not available on the server More...
 
const CALL_ERROR_NOT_ON_CLIENT
 this method is not available on the client More...
 
const CALL_ERROR_ALREADY_INVOKED
 this method must be called before invoke More...
 
const CALL_ERROR_NOT_INVOKED
 this method must be called after invoke More...
 
const CALL_ERROR_ALREADY_FINISHED
 this call is already finished (writes_done or write_status has already been called) More...
 
const CALL_ERROR_TOO_MANY_OPERATIONS
 there is already an outstanding read/write operation on the call More...
 
const CALL_ERROR_INVALID_FLAGS
 the flags value was illegal for this call More...
 
const WRITE_BUFFER_HINT
 Hint that the write may be buffered and need not go out on the wire immediately. More...
 
const WRITE_NO_COMPRESS
 Force compression to be disabled for a particular write (start_write/add_metadata). More...
 
const STATUS_OK
 Not an error; returned on success. More...
 
const STATUS_CANCELLED
 The operation was cancelled (typically by the caller). More...
 
const STATUS_UNKNOWN
 Unknown error. More...
 
const STATUS_INVALID_ARGUMENT
 Client specified an invalid argument. More...
 
const STATUS_DEADLINE_EXCEEDED
 Deadline expired before operation could complete. More...
 
const STATUS_NOT_FOUND
 Some requested entity (e.g., file or directory) was not found. More...
 
const STATUS_ALREADY_EXISTS
 Some entity that we attempted to create (e.g., file or directory) already exists. More...
 
const STATUS_PERMISSION_DENIED
 The caller does not have permission to execute the specified operation. More...
 
const STATUS_UNAUTHENTICATED
 The request does not have valid authentication credentials for the operation. More...
 
const STATUS_RESOURCE_EXHAUSTED
 Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out of space. More...
 
const STATUS_FAILED_PRECONDITION
 Operation was rejected because the system is not in a state required for the operation's execution. More...
 
const STATUS_ABORTED
 The operation was aborted, typically due to a concurrency issue like sequencer check failures, transaction aborts, etc. More...
 
const STATUS_OUT_OF_RANGE
 Operation was attempted past the valid range. More...
 
const STATUS_UNIMPLEMENTED
 Operation is not implemented or not supported/enabled in this service. More...
 
const STATUS_INTERNAL
 Internal errors. More...
 
const STATUS_UNAVAILABLE
 The service is currently unavailable. More...
 
const STATUS_DATA_LOSS
 Unrecoverable data loss or corruption. More...
 
const OP_SEND_INITIAL_METADATA
 Send initial metadata: one and only one instance MUST be sent for each call, unless the call was cancelled - in which case this can be skipped. More...
 
const OP_SEND_MESSAGE
 Send a message: 0 or more of these operations can occur for each call. More...
 
const OP_SEND_CLOSE_FROM_CLIENT
 Send a close from the client: one and only one instance MUST be sent from the client, unless the call was cancelled - in which case this can be skipped. More...
 
const OP_SEND_STATUS_FROM_SERVER
 Send status from the server: one and only one instance MUST be sent from the server unless the call was cancelled - in which case this can be skipped. More...
 
const OP_RECV_INITIAL_METADATA
 Receive initial metadata: one and only one MUST be made on the client, must not be made on the server. More...