interface XJob in module com::sun::star::task::

(Global Index)

Syntax

interface XJob : com::sun::star::uno::XInterface ;

Description

specifies a simply synchronous job

Method Summary

execute executes the job

Method Details



execute

Syntax

any execute (
sequence< com::sun::star::beans::NamedValue > lArgs )
raises ( com::sun::star::lang::IllegalArgumentException , com::sun::star::uno::Exception );

Description

executes the job

Parameter lArgs

are arguments for executing the job. Their semantics is completely implementation dependent. Usually, a concrete implementation of a job specifies in its service descriptions which parameters are allowed (or expected).

Returns

the result of the job. The concrete semantics is service-dependent.
Top of Page