nimbus (1.2.4) | 2018-01-25 20:02 |
nimbus-sample (1.2.4) | 2018-01-26 17:06 |
jp.ossc.nimbus.service.scheduler.SimpleScheduleFactoryServiceは、引数で指定されたキーと関係なく登録されているスケジュールを提供する単純なScheduleFactory実装サービスです。
このサービスは、複合的なサービスで、以下のサービスを下位サービスとして使用します。
下位サービスインタフェース | 用途 |
jp.ossc.nimbus.service.scheduler.Schedule | 提供するスケジュールとして使用する。 |
jp.ossc.nimbus.service.scheduler.ScheduleStateManager | スケジュールに設定する。 |
以下に簡単なサービス定義を示します。
- <?xml version="1.0" encoding="Shift_JIS"?>
- <!DOCTYPE server PUBLIC
- "-//Nimbus//DTD Nimbus 1.0//JA"
- "http://nimbus.sourceforge.jp/dtd/nimbus-service_1_0.dtd">
- <server>
- <manager>
- <!-- スケジュールファクトリサービス -->
- <service name="ScheduleFactory"
- code="jp.ossc.nimbus.service.scheduler.SimpleScheduleFactoryService">
- <!-- スケジュールサービスのサービス名を設定する -->
- <attribute name="ScheduleServiceNames">
- #Schedule1
- #Schedule2
- #Schedule3
- </attribute>
- <depends>Schedule1</depends>
- <depends>Schedule2</depends>
- <depends>Schedule3</depends>
- </service>
- <!-- スケジュール1
- スケジューラ起動の1秒後に1度だけ実行するスケジュール
- -->
- <service name="Schedule1"
- code="jp.ossc.nimbus.service.scheduler.TimerScheduleService">
- <attribute name="Name">Task1</attribute>
- <attribute name="Task">
- <object code="sample.task.SampleTask">
- <attribute name="Name">Task1</attribute>
- </object>
- </attribute>
- <attribute name="Delay">1000</attribute>
- </service>
- <!-- スケジュール2
- スケジューラ起動直後に実行され、1秒間隔で実行され続けるスケジュール
- -->
- <service name="Schedule2"
- code="jp.ossc.nimbus.service.scheduler.TimerScheduleService">
- <attribute name="Name">Task2</attribute>
- <attribute name="Task">
- <object code="sample.task.SampleTask">
- <attribute name="Name">Task2</attribute>
- </object>
- </attribute>
- <attribute name="Delay">0</attribute>
- <attribute name="Period">1000</attribute>
- </service>
- <!-- スケジュール3
- スケジューラ起動直後に実行され、1秒間隔で実行され続けるスケジュール
- 但し、タスクの処理時間が1.5秒かかるため、結果として1.5秒間隔で実行される。
- また、非同期処理用のキューを設定しているため、他のスケジュールの実行には影響を及ぼさない。
- -->
- <service name="Schedule3"
- code="jp.ossc.nimbus.service.scheduler.TimerScheduleService">
- <attribute name="Name">Task3</attribute>
- <attribute name="Task">
- <object code="sample.task.SampleTask">
- <attribute name="Name">Task3</attribute>
- <attribute name="ProcessTime">1500</attribute>
- </object>
- </attribute>
- <attribute name="Delay">0</attribute>
- <attribute name="Period">1000</attribute>
- <attribute name="QueueServiceName">Queue</attribute>
- <attribute name="DependsScheduleNames">Task1</attribute>
- <depends>
- <!-- 非同期処理用のキューサービス -->
- <service name="Queue"
- code="jp.ossc.nimbus.service.queue.DefaultQueueService"/>
- </depends>
- </service>
- </manager>
- </server>