Files
loongoffice/offapi/com/sun/star/task/JobExecutor.idl
Rüdiger Timm fb09afcc5f INTEGRATION: CWS ooo19126 (1.6.242); FILE MERGED
2005/09/05 12:31:37 rt 1.6.242.1: #i54170# Change license header: remove SISSL
2005-09-08 04:55:17 +00:00

72 lines
2.5 KiB
Plaintext

/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: JobExecutor.idl,v $
*
* $Revision: 1.7 $
*
* last change: $Author: rt $ $Date: 2005-09-08 05:55:17 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
************************************************************************/
#ifndef __com_sun_star_task_JobExecutor_idl__
#define __com_sun_star_task_JobExecutor_idl__
#ifndef __com_sun_star_task_XJobExecutor_idl__
#include <com/sun/star/task/XJobExecutor.idl>
#endif
//============================================================================
module com { module sun { module star { module task {
//============================================================================
/** generic job execution service
<p>
Can start registered uno services on triggered events and handle there
own configuration and there lifetime. Such events are simple strings
wich meaning doesn't matter for any real service implementation of this
specification. But triggered events must be available inside the
configuration and some <type>Job</type>s or <type>AsyncJob</type>s must be registered for that.
</p>
@see Job
@see AsyncJob
*/
published service JobExecutor
{
//------------------------------------------------------------------------
/** start and regulate execution.
*/
interface com::sun::star::task::XJobExecutor;
};
}; }; }; };
#endif