semi合集-English.pdf - 第2855页
SEMI E105-0701 © SEMI 2000, 2001 6 /* Return an activity list for this material group. T he activity list will contain the number of existing activities requested in listCo unt in maximum. If “listCo unt” is blank, the a…

SEMI E105-0701 © SEMI 2000, 20015
6.1.6 SchedulingManager Interface
Module: Scheduling
Interface: SchedulingManager
Inherited Interface: ComponentManager
interface SchedulingManager : FactoryOperations::ComponentManager {
Description: The SchedulingManager provides the concrete interfaces that support the registration and
control of the Scheduling Component and enable access to the Dispatcher and Scheduler
interfaces.
Exceptions:
/* An attempt was made to request an activity for a resource that is not found within the factory data available to this
SchedulingManager. */
exception ResourceNotFound {
AbstractIF::Resource requestedObject;};
/* An attempt was made to request an activity for a material group that is not found within the factory data available
to this SchedulingManager. */
exception MaterialGroupNotFound {
AbstractIF::MaterialGroup requestedObject;};
/* An attempt was made to request an activity for a durable that is not found within the factory data available to this
SchedulingManager. */
exception DurableNotFound {
DurablesManagement::Durable requestedObject;};
Published Events:.
/* The ActivityListAvailable event is published by the Scheduling Component to notify event subscribers that a new
ActivityList containing changes is available. The generation of ActivityListAvailable events is controlled as an
implementation specific configuration choice. */
ActivityListAvailable
/* The ForecastListAvailable event is published by the Scheduling Component to notify event subscribers that a new
Forecast is available. ForecastList generation is potentially a compute-intensive operation which may benefit from
event notification when an updated forecast is available. The generation of ForecastListAvailable events is
controlled as an implementation specific configuration choice. */
ForecastListAvailable
Provided Services:
/* Return an activity list for this resource. The activity list will contain the number of existing activities requested in
listCount in maximum. If “listCount” is blank, the activity list shall contain all existing activities. A decision will
be represented by an activity list with only one activity option. The ActivityOptions returned by this operation may
be ProductionActivity, MaintenanceActivity or DoNothing ActivityTypes. Although Resources are typically
immobile (such a Equipment), some Resources may also be subject to TransportActivities. */
ActivityList whatNextForResourceByCount (
in AbstractIF::Resource aResource)
in short listCount)
raises (Global::FrameworkErrorSignal,
ResourceNotFound);

SEMI E105-0701 © SEMI 2000, 2001 6
/* Return an activity list for this material group. The activity list will contain the number of existing activities
requested in listCount in maximum. If “listCount” is blank, the activity list shall contain all existing activities. A
decision will be represented by an activity list with only one activity option. The ActivityOptions returned by this
operation may be ProductionActivity, TransportActivity or DoNothing ActivityTypes. */
ActivityList whatNextForMaterialGroupByCount (
in AbstractIF::MaterialGroup aMaterialGroup,
in short listCount)
raises (Global::FrameworkErrorSignal,
MaterialGroupNotFound);
/* Return an activity list for this durable. The activity list will contain the number of existing activities requested in
listCount in maximum. If “listCount” is blank, the activity list shall contain all existing activities. A decision will
be represented by an activity list with only one activity option. The ActivityOptions returned by this operation may
be ProductionActivity, MaintenanceActivity, TransportActivity or DoNothing ActivityTypes. */
ActivityList whatNextForDurableByCount (
in DurablesManagement::Durable aDurable)
in short listCount)
raises (Global::FrameworkErrorSignal,
DurableNotFound);
/* Return an activity list containing the next TransportActivity for this material group. A decision will be
represented by an activity list with only one activity option. The ActivityOptions returned by this operation may be
TransportActivity or DoNothing ActivityTypes. This operation is defined to support a factory operating with a
“push” model that pushes material to the next storage or production machine. */
ActivityList whereNextForMaterialGroup (in AbstractIF::MaterialGroup aMaterialGroup)
raises (Global::FrameworkErrorSignal,
MaterialGroupNotFound);
/* Return an activity list containing the next TransportActivity for this durable. A decision will be represented by an
activity list with only one activity option. The ActivityOptions returned by this operation may be TransportActivity
or DoNothing ActivityTypes. This operation is defined to support a factory operating with a “push” model that
pushes material to the next storage or production machine. */
ActivityList whereNextForDurable (in DurablesManagement::Durable aDurable)
raises (Global::FrameworkErrorSignal,
DurableNotFound);
/* Return a forecast list containing future activities for this resource. The forecast list will contain all activities
projected to start before the lookAheadTime, but which have not yet been started. The forecast list may include a
mix of different activity types. */
ForecastList forecastForResourceByTime (
in AbstractIF::Resource aResource,
in Global::TimeStamp lookAheadTime)
raises (Global::FrameworkErrorSignal,
ResourceNotFound);
/* Return a forecast list containing future activities for this material group. The forecast list will contain all activities
projected to start before the lookAheadTime, but which have not yet been started. The forecast list may include a
mix of different activity types. */
ForecastList forecastForMaterialGroupByTime (
in AbstractIF::MaterialGroup aMaterialGroup,
in Global::TimeStamp lookAheadTime)
raises (Global::FrameworkErrorSignal,
MaterialGroupNotFound);

SEMI E105-0701 © SEMI 2000, 20017
/* Return a forecast list containing future activities for this durable. The forecast list will contain all activities
projected to start before the lookAheadTime, but which have not yet been started. The forecast list may include a
mix of different activity types. */
ForecastList forecastForDurableByTime (
in DurablesManagement::Durable aDurable,
in Global::TimeStamp lookAheadTime)
raises (Global::FrameworkErrorSignal,
DurableNotFound);
/* Return a forecast list containing future activities for this resource. The forecast list will contain the number of
upcoming activities requested in lookAheadCount. The forecast list may include a mix of different activity types. */
ForecastList forecastForResourceByCount (
in AbstractIF::Resource aResource,
in short lookAheadCount)
raises (Global::FrameworkErrorSignal,
ResourceNotFound);
/* Return a forecast list containing future activities for this material group. The forecast list will contain the number
of upcoming activities requested in lookAheadCount. The forecast list may include a mix of different activity types.
*/
ForecastList forecastForMaterialGroupByCount (
in AbstractIF::MaterialGroup aMaterialGroup,
in short lookAheadCount)
raises (Global::FrameworkErrorSignal,
MaterialGroupNotFound);
/* Return a forecast list containing future activities for this durable. The forecast list will contain the number of
upcoming activities requested in lookAheadCount. The forecast list may include a mix of different activity types. */
ForecastList forecastForDurableByCount (
in DurablesManagement::Durable aDurable,
in short lookAheadCount)
raises (Global::FrameworkErrorSignal,
DurableNotFound);
Contracted Services: None.
Dynamic Model: Inherited from ComponentManager.
}; // SchedulingManager