GRPC PHP  1.62.0
Namespaces | Variables
Constants.php File Reference

Namespaces

 Grpc
 Class AbstractCall.
 

Variables

const Grpc::CALL_OK
 everything went ok More...
 
const Grpc::CALL_ERROR
 something failed, we don't know what More...
 
const Grpc::CALL_ERROR_NOT_ON_SERVER
 this method is not available on the server More...
 
const Grpc::CALL_ERROR_NOT_ON_CLIENT
 this method is not available on the client More...
 
const Grpc::CALL_ERROR_ALREADY_INVOKED
 this method must be called before invoke More...
 
const Grpc::CALL_ERROR_NOT_INVOKED
 this method must be called after invoke More...
 
const Grpc::CALL_ERROR_ALREADY_FINISHED
 this call is already finished (writes_done or write_status has already been called) More...
 
const Grpc::CALL_ERROR_TOO_MANY_OPERATIONS
 there is already an outstanding read/write operation on the call More...
 
const Grpc::CALL_ERROR_INVALID_FLAGS
 the flags value was illegal for this call More...
 
const Grpc::WRITE_BUFFER_HINT
 Hint that the write may be buffered and need not go out on the wire immediately. More...
 
const Grpc::WRITE_NO_COMPRESS
 Force compression to be disabled for a particular write (start_write/add_metadata). More...
 
const Grpc::STATUS_OK
 Not an error; returned on success. More...
 
const Grpc::STATUS_CANCELLED
 The operation was cancelled (typically by the caller). More...
 
const Grpc::STATUS_UNKNOWN
 Unknown error. More...
 
const Grpc::STATUS_INVALID_ARGUMENT
 Client specified an invalid argument. More...
 
const Grpc::STATUS_DEADLINE_EXCEEDED
 Deadline expired before operation could complete. More...
 
const Grpc::STATUS_NOT_FOUND
 Some requested entity (e.g., file or directory) was not found. More...
 
const Grpc::STATUS_ALREADY_EXISTS
 Some entity that we attempted to create (e.g., file or directory) already exists. More...
 
const Grpc::STATUS_PERMISSION_DENIED
 The caller does not have permission to execute the specified operation. More...
 
const Grpc::STATUS_UNAUTHENTICATED
 The request does not have valid authentication credentials for the operation. More...
 
const Grpc::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 Grpc::STATUS_FAILED_PRECONDITION
 Operation was rejected because the system is not in a state required for the operation's execution. More...
 
const Grpc::STATUS_ABORTED
 The operation was aborted, typically due to a concurrency issue like sequencer check failures, transaction aborts, etc. More...
 
const Grpc::STATUS_OUT_OF_RANGE
 Operation was attempted past the valid range. More...
 
const Grpc::STATUS_UNIMPLEMENTED
 Operation is not implemented or not supported/enabled in this service. More...
 
const Grpc::STATUS_INTERNAL
 Internal errors. More...
 
const Grpc::STATUS_UNAVAILABLE
 The service is currently unavailable. More...
 
const Grpc::STATUS_DATA_LOSS
 Unrecoverable data loss or corruption. More...
 
const Grpc::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 Grpc::OP_SEND_MESSAGE
 Send a message: 0 or more of these operations can occur for each call. More...
 
const Grpc::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 Grpc::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 Grpc::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...
 
const Grpc::OP_RECV_MESSAGE
 Receive a message: 0 or more of these operations can occur for each call. More...
 
const Grpc::OP_RECV_STATUS_ON_CLIENT
 Receive status on the client: one and only one must be made on the client. More...
 
const Grpc::OP_RECV_CLOSE_ON_SERVER
 Receive close on the server: one and only one must be made on the server. More...
 
const Grpc::CHANNEL_IDLE
 channel is idle More...
 
const Grpc::CHANNEL_CONNECTING
 channel is connecting More...
 
const Grpc::CHANNEL_READY
 channel is ready for work More...
 
const Grpc::CHANNEL_TRANSIENT_FAILURE
 channel has seen a failure but expects to recover More...
 
const Grpc::CHANNEL_FATAL_FAILURE
 channel has seen a failure that it cannot recover from More...