package com.iplatform.recvideo;
|
|
import com.iplatform.gather.GatherScheduler;
|
import com.walker.store.support.EmptyDatabaseStore;
|
|
public abstract class VideoScheduler extends GatherScheduler {
|
|
protected static final String SUCCESS = "ok";
|
|
public VideoScheduler(int id, String name){
|
super(id, name, new EmptyDatabaseStore());
|
}
|
|
protected void terminateGatherScheduler(int schedulerId) {
|
|
}
|
|
|
}
|