shikeying
2022-10-11 71d355f4db31807a13d78e6e257e9d26c4702c23
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) {
 
    }
 
 
}