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

(Global Index)

Syntax

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

Description

specifies a job which is to be executed asynchronously.

Method Summary

executeAsync executes the job asynchronously

Method Details



executeAsync

Syntax

void executeAsync (
sequence< com::sun::star::beans::NamedValue > lArgs,
com::sun::star::task::XJobListener xListener )
raises ( com::sun::star::lang::IllegalArgumentException );

Description

executes the job asynchronously

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).

Parameter xListener

specifies a listener which should be notified on events. May be NULL .
Top of Page