/* * Copyright 2016 Red Hat, Inc. and/or its affiliates * and other contributors as indicated by the @author tags. * * 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 org.keycloak.cluster; import java.util.concurrent.Callable; import org.keycloak.provider.Provider; /** * Various utils related to clustering and concurrent tasks on cluster nodes * * @author Marek Posolda */ public interface ClusterProvider extends Provider { /** * Same value for all cluster nodes. It will use startup time of this server in non-cluster environment. */ int getClusterStartupTime(); /** * Execute given task just if it's not already in progress (either on this or any other cluster node). * * @param taskKey * @param taskTimeoutInSeconds timeout for given task. If there is existing task in progress for longer time, it's considered outdated so we will start our task. * @param task * @param * @return result with "executed" flag specifying if execution was executed or ignored. */ ExecutionResult executeIfNotExecuted(String taskKey, int taskTimeoutInSeconds, Callable task); /** * Register task (listener) under given key. When this key will be put to the cache on any cluster node, the task will be executed * * @param taskKey * @param task */ void registerListener(String taskKey, ClusterListener task); /** * Notify registered listeners on all cluster nodes * * @param taskKey * @param event */ void notify(String taskKey, ClusterEvent event); }