Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: task ::

interface XAsyncJob

Base Interface
com::sun::star::uno::XInterface

Description
specifies a job which is to be executed asynchronously.


Methods' Summary

executeAsync executes the job asynchronously

Methods' Details

executeAsync
 
void
executeAsync(
[ in ] sequence< com::sun::star::beans::NamedValue > lArgs,
[ in ] 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