/**
 * ITimerService.java
 * Created Jan 18, 2007
 * Copyright (C) Tandberg Television 2007
 */
package com.tandbergtv.workflow.driver.timer;

import org.jbpm.graph.exe.Token;

import com.tandbergtv.workflow.core.service.Service;

/**
 * A timer management service
 * 
 * @author Sahil Verma
 */
public interface ITimerService extends Service {
	
	/**
	 * Adds the specified timer
	 * 
	 * @param timer
	 */
	void addTimer(TokenTimer timer);
	
	/**
	 * Removes the timer for the given token
	 * 
	 * @param token
	 */
	void deleteTimer(Token token);
}
