11 changed files with 92 additions and 174 deletions
@ -1,17 +0,0 @@ |
|||
package app.configs; |
|||
|
|||
import org.jobrunr.jobs.mappers.JobMapper; |
|||
import org.jobrunr.storage.InMemoryStorageProvider; |
|||
import org.jobrunr.storage.StorageProvider; |
|||
import org.springframework.context.annotation.Bean; |
|||
import org.springframework.context.annotation.Configuration; |
|||
|
|||
@Configuration |
|||
public class JobRunrConfig { |
|||
@Bean |
|||
public StorageProvider storageProvider(JobMapper jobMapper) { |
|||
InMemoryStorageProvider storageProvider = new InMemoryStorageProvider(); |
|||
storageProvider.setJobMapper(jobMapper); |
|||
return storageProvider; |
|||
} |
|||
} |
@ -1,42 +0,0 @@ |
|||
package app.configs; |
|||
|
|||
import com.ibasco.agql.core.enums.RateLimitType; |
|||
import com.ibasco.agql.core.util.FailsafeOptions; |
|||
import com.ibasco.agql.core.util.GeneralOptions; |
|||
import com.ibasco.agql.protocols.valve.source.query.SourceQueryClient; |
|||
import com.ibasco.agql.protocols.valve.source.query.SourceQueryOptions; |
|||
import com.ibasco.agql.protocols.valve.source.query.rcon.SourceRconClient; |
|||
import com.ibasco.agql.protocols.valve.source.query.rcon.SourceRconOptions; |
|||
import org.springframework.context.annotation.Bean; |
|||
import org.springframework.context.annotation.Configuration; |
|||
import org.springframework.context.annotation.Scope; |
|||
|
|||
import java.util.concurrent.ExecutorService; |
|||
import java.util.concurrent.Executors; |
|||
|
|||
//@Configuration
|
|||
public class ProtocolA2S { |
|||
//https://ribasco.github.io/async-gamequery-lib/examples/source_query_example.html#blocking-example
|
|||
//@Scope("prototype")
|
|||
/*@Bean |
|||
public SourceQueryClient GetSourceQueryClient() { |
|||
ExecutorService customExecutor = Executors.newCachedThreadPool(); |
|||
SourceQueryOptions options = SourceQueryOptions.builder() |
|||
.option(FailsafeOptions.FAILSAFE_RATELIMIT_TYPE, RateLimitType.BURST) |
|||
.option(GeneralOptions.THREAD_EXECUTOR_SERVICE, customExecutor) |
|||
.build(); |
|||
return new SourceQueryClient(options); |
|||
} |
|||
*/ |
|||
//@Scope("prototype")
|
|||
/* |
|||
@Bean |
|||
public SourceRconClient GetSourceRconClient() { |
|||
ExecutorService customExecutor = Executors.newCachedThreadPool(); |
|||
SourceRconOptions options = SourceRconOptions.builder() |
|||
//.option(FailsafeOptions.FAILSAFE_RATELIMIT_TYPE, RateLimitType.BURST)
|
|||
.option(GeneralOptions.THREAD_EXECUTOR_SERVICE, customExecutor) |
|||
.build(); |
|||
return new SourceRconClient(options); |
|||
}*/ |
|||
} |
@ -0,0 +1,27 @@ |
|||
package app.updates; |
|||
|
|||
import java.util.concurrent.Callable; |
|||
import java.util.concurrent.CompletableFuture; |
|||
import java.util.function.Consumer; |
|||
import java.util.function.Function; |
|||
import java.util.function.Supplier; |
|||
|
|||
public abstract class BaseUpdater { |
|||
public void CreateTaskUpdater(Supplier function, int timeout) { |
|||
System.out.printf("Create task: %s, update after %d sec\n", function.toString(), timeout / 1000); |
|||
CompletableFuture.supplyAsync(() -> { |
|||
while (true) { |
|||
try { |
|||
System.out.printf("Call: %s\n", function.toString()); |
|||
function.get(); |
|||
} catch (Exception err) { |
|||
err.printStackTrace(); |
|||
} finally { |
|||
try { |
|||
Thread.sleep(timeout); |
|||
} catch (InterruptedException e) {} |
|||
} |
|||
} |
|||
}); |
|||
} |
|||
} |
Loading…
Reference in new issue