All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.kagkarlsson.examples.ExponentialBackoffWithMaxRetriesMain Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) Gustav Karlsson
 *
 * 

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License at * *

http://www.apache.org/licenses/LICENSE-2.0 * *

Unless required by applicable law or agreed to in writing, software distributed under the * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing permissions and * limitations under the License. */ package com.github.kagkarlsson.examples; import static java.time.Duration.ofSeconds; import com.github.kagkarlsson.examples.helpers.Example; import com.github.kagkarlsson.scheduler.Scheduler; import com.github.kagkarlsson.scheduler.task.FailureHandler; import com.github.kagkarlsson.scheduler.task.TaskDescriptor; import com.github.kagkarlsson.scheduler.task.helper.OneTimeTask; import com.github.kagkarlsson.scheduler.task.helper.Tasks; import java.time.Instant; import javax.sql.DataSource; public class ExponentialBackoffWithMaxRetriesMain extends Example { public static void main(String[] args) { new ExponentialBackoffWithMaxRetriesMain().runWithDatasource(); } public static final TaskDescriptor EXPONENTIAL_BACKOFF_TASK = TaskDescriptor.of("exponential_backoff_with_max_retries_task"); @Override public void run(DataSource dataSource) { OneTimeTask failingTask = Tasks.oneTime(EXPONENTIAL_BACKOFF_TASK) .onFailure( new FailureHandler.MaxRetriesFailureHandler<>( 6, new FailureHandler.ExponentialBackoffFailureHandler<>(ofSeconds(1), 2))) .execute( (taskInstance, executionContext) -> { throw new RuntimeException("simulated task exception"); }); final Scheduler scheduler = Scheduler.create(dataSource, failingTask) .pollingInterval(ofSeconds(2)) .registerShutdownHook() .build(); scheduler.schedule(EXPONENTIAL_BACKOFF_TASK.instance("1").scheduledTo(Instant.now())); scheduler.start(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy