shikeying
2022-09-26 fd03e31f173ad9c52b15a30a9127e2b6a468538d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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) {
 
    }
 
 
}