
com.greatmancode.tools.caller.unittest.UnitTestSchedulerCaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tools Show documentation
Show all versions of tools Show documentation
Library to support multiple minecraft server backend.
The newest version!
/**
* This file is part of GreatmancodeTools.
*
* Copyright (c) 2013-2015, Greatman
*
* GreatmancodeTools is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GreatmancodeTools is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with GreatmancodeTools. If not, see .
*/
package com.greatmancode.tools.caller.unittest;
import com.greatmancode.tools.interfaces.caller.SchedulerCaller;
import com.greatmancode.tools.interfaces.caller.ServerCaller;
public class UnitTestSchedulerCaller extends SchedulerCaller {
public UnitTestSchedulerCaller(ServerCaller caller) {
super(caller);
}
@Override
public int schedule(Runnable entry, long firstStart, long repeating) {
// TODO Auto-generated method stub
return 0;
}
@Override
public int schedule(Runnable entry, long firstStart, long repeating, boolean async) {
// TODO Auto-generated method stub
return 0;
}
@Override
public void cancelSchedule(int id) {
// TODO Auto-generated method stub
}
@Override
public int delay(Runnable entry, long start) {
// TODO Auto-generated method stub
return 0;
}
@Override
public int delay(Runnable entry, long start, boolean async) {
// TODO Auto-generated method stub
return 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy