Package omero.grid

Interface _ScriptProcessOperations

    • Method Detail

      • getJob

        ScriptJob getJob​(Ice.Current __current)
                  throws ServerError
        Returns the job which started this process. Several scheduling fields (submitted, scheduledFor, started, finished) may be of interest.
        Parameters:
        __current - The Current object for the invocation.
        Throws:
        ServerError
      • getResults

        java.util.Map<java.lang.String,​RType> getResults​(int waitSecs,
                                                               Ice.Current __current)
                                                        throws ServerError
        Returns the results immediately if present. If the process is not yet finished, waits "waitSecs" before throwing an ApiUsageException. If poll has returned a non-null value, then this method will always return a non-null value.
        Parameters:
        __current - The Current object for the invocation.
        Throws:
        ServerError
      • setMessage

        java.lang.String setMessage​(java.lang.String message,
                                    Ice.Current __current)
                             throws ServerError
        Sets the message on the ScriptJob object. This value MAY be overwritten by the server if the script fails.
        Parameters:
        __current - The Current object for the invocation.
        Throws:
        ServerError
      • close

        void close​(boolean detach,
                   Ice.Current __current)
            throws ServerError
        Closes this process and frees server resources attached to it. If the detach argument is True, then the background process will continue executing. The user can reconnect to the process via the IScript service. If the detach argument is False, then the background process will be shutdown immediately, and all intermediate results (stdout, stderr, ...) will be uploaded.
        Parameters:
        __current - The Current object for the invocation.
        Throws:
        ServerError