NAME
grpc_probe - Checks the session execution status.
SYNOPSIS
  grpc_error_t grpc_probe(grpc_sessionid_t session_id)
ARGUMENTS
  grpc_sessionid_t session_id 
- 	The session ID
 
DESCRIPTION
  The grpc_probe() function returns the execution status of the session specified by the session ID.
 This function is MT-safe. 
RETURN VALUE
  If the session is completed, GRPC_NO_ERROR is returned. Otherwise, GRPC_NOT_COMPLETED is returned. If 
the grpc_probe itself failed, Error code is returned.
ERRORS
  GRPC_NOT_INITIALIZED 
- 	GRPC client is not initialized yet.
 
  GRPC_INVALID_SESSION_ID 
-     Session ID is not valid.
 
  GRPC_NOT_COMPLETED 
-     Call has not completed.
 
  GRPC_OTHER_ERROR_CODE 
- 	Internal error detected.
 
last update : $Date: 2005/07/11 07:11:24 $