blob: 1f7b49c8f61c23e4f48e6c0eb299d6173106dcb6 [file] [log] [blame]
/*****************************************************************************
*
* Copyright (c) 2016 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* CEA LIST Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.moka.discreteevent;
import java.util.List;
public abstract class AbstractPushPullStrategy {
protected DEScheduler scheduler ;
public DEScheduler getScheduler() {
return scheduler;
}
public void setScheduler(DEScheduler scheduler) {
this.scheduler = scheduler;
}
public abstract List<Event> pullEvents(double date) ;
public abstract void pushEvent(Event event) ;
public abstract void pushEvent(Event event, double absoluteDate) ;
}