Skip to main content
Skip table of contents

Scheduling

Functionality

This component demonstrates how to send messages in scheduling mode. When scheduling is enabled, the component sends the configured message, 'poll number' of times every 'poll interval'.

Changes made in the component

  1. When scheduling starts, a TimerScheduler and a TimerScheduledJob are created. The TimerScheduledJob which handles sending the messages, 'poll number' of times is added to the Scheduler which keeps track of the poll interval.
    The code snippet is shown below:

    CODE
    private void startScheduler(MessageProducer sendProducer, Message message) {
    TimerScheduler timerScheduler = new TimerScheduler();
    schedulableJob = new TimerScheduledJob(sendProducer, message, model.getSchedulerConfig().getPollNumber());
    timerScheduler.addScheduledJob(schedulableJob, model.getSchedulerConfig().getPollInterval() * 1000);
    }
  2. The UI of the component is handled by the package com.fiorano.edbc.service.editors and the scheduling configuration is saved using the class com.fiorano.edbc.service.model.SchedulerConfiguration.


Service Dependencies Used

The Service Dependencies used by this sample can be seen in "servicerefs" element present in the "deployment" in the service descriptor file (etc/ServiceDescriptor.xml).

  • To check the functionality of this component, it should be registered with the server.
  • The steps to register the samples is specified in the Sample Templates section.


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.