All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.varia.scheduler.SingleScheduleProviderMBean Maven / Gradle / Ivy

There is a newer version: 6.1.0.Final
Show newest version
/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2008, Red Hat Middleware LLC, and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
 * distribution for a full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software 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 software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package org.jboss.varia.scheduler;

import javax.management.ObjectName;

import org.jboss.mx.util.ObjectNameFactory;

/**
 * SingleScheduleProvider MBean interface.
 * 
 * @author Andreas Schaefer
 * @author Dimitris Andreadis
 * @version $Revision: 81038 $ 
 */
public interface SingleScheduleProviderMBean extends AbstractScheduleProviderMBean
{
   /** The default ObjectName */
   ObjectName OBJECT_NAME = ObjectNameFactory.create("jboss:service=SingleScheduleProvider");

   // Attributes ----------------------------------------------------
   
   /**
    * The ObjectName of the Schedulable MBean to call
    */
   void setTargetName(ObjectName objectName);   
   ObjectName getTargetName();

   /** 
    * The method name to call on the Schedulable MBean. It can optionally
    * be followed by an opening bracket, list of attributes (see below) and a closing bracket.
    * 
    * The list of attributes can contain:
    * 
    *
  • NOTIFICATION which will be replaced by the timers notification instance (javax.management.Notification)
  • *
  • DATE which will be replaced by the date of the notification call (java.util.Date)
  • *
  • REPETITIONS which will be replaced by the number of remaining repetitions (long)
  • *
  • SCHEDULER_NAME which will be replaced by the Object Name of the Scheduler (javax.management.ObjectName)
  • *
  • any full qualified Class name which the Scheduler will be set a "null" value for it
  • *
* An example could be: "doSomething( NOTIFICATION, REPETITIONS, java.lang.String )" * where the Scheduler will pass the timer's notification instance, the remaining * repetitions as int and a null to the MBean's doSomething() method which must * have the following signature: doSomething(javax.management.Notification, long, java.lang.String). * * @param method Name of the method to be called optional followed by method arguments (see above). * @throws IllegalArgumentException If the given value is not of the right format */ void setTargetMethod(String method) throws IllegalArgumentException; String getTargetMethod(); /** * The Schedule Period between two scheduled call. * * @param period Time between to scheduled calls (after the initial call) * in Milliseconds. This value must be bigger than 0. * @throws IllegalArgumentException If the given value is less or equal than 0 */ void setPeriod(long period); long getPeriod(); /** * The date format used to parse date/times * @param dateFormat The date format when empty or null the locale is used to parse dates */ void setDateFormat(String dateFormat); String getDateFormat(); /** * The date/time of the first scheduled call. If the date is in the past * the scheduler tries to find the next available start date. * @param startDate Date when the initial call is scheduled. It can be either: *
    *
  • NOW: date will be the current date (new Date()) plus 1 seconds
  • *
  • Date as String able to be parsed by SimpleDateFormat with default format
  • *
  • Date as String parsed using the date format attribute
  • *
  • Milliseconds since 1/1/1970
  • *
* If the date is in the past the Scheduler will search a start date in the future * with respect to the initial repe- titions and the period between calls. This means * that when you restart the MBean (restarting JBoss etc.) it will start at the next * scheduled time. When no start date is available in the future the Scheduler will not start. *
* Example: if you start your Schedulable everyday at Noon and you restart your JBoss server * then it will start at the next Noon (the same if started before Noon or the next day if * start after Noon). */ void setStartDate(String startDate); String getStartDate(); /** * Sets the initial number of scheduled calls. * * @param numberOfCalls Initial Number of scheduled calls. If -1 then the number is unlimited. * @throws IllegalArgumentException If the given value is less or equal than 0 */ void setRepetitions(long numberOfCalls); long getRepetitions(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy