gs_probe.m

Go to the documentation of this file.
00001 function [varargout] = gs_probe(varargin)
00002 % status = gs_probe(sessionid)
00003 % 
00004 % Check on the status of a service request that was previously
00005 % submitted to the GridSolve network enabled solver.  Returned
00006 % status is
00007 % GRPC_NO_ERROR                  0
00008 % GRPC_NOT_INITIALIZED           1
00009 % GRPC_INVALID_SESSION_ID        8
00010 % GRPC_NOT_COMPLETED            12
00011 % GRPC_OTHER_ERROR_CODE         14
00012 %
00013 % See also gs_call_async
00014 
00015 if (nargout > 0) 
00016   for i=1:nargout, varargout{i} = []; end
00017   [varargout{:}] = matlab_gs_lib(6, varargin{:});
00018 else 
00019   matlab_gs_lib(6, varargin{:});
00020 end
00021