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

org.elasticsearch.xpack.core.ilm.AsyncWaitStep Maven / Gradle / Ivy

/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0; you may not use this file except in compliance with the Elastic License
 * 2.0.
 */
package org.elasticsearch.xpack.core.ilm;

import org.elasticsearch.client.Client;
import org.elasticsearch.cluster.metadata.Metadata;
import org.elasticsearch.common.unit.TimeValue;
import org.elasticsearch.common.xcontent.ToXContentObject;
import org.elasticsearch.index.Index;

/**
 * A step which will be called periodically, waiting for some condition to become true.
 * Called asynchronously, as the condition may take time to check.
 * 

* If checking something based on the current cluster state which does not take time to check, use {@link ClusterStateWaitStep}. */ public abstract class AsyncWaitStep extends Step { private Client client; public AsyncWaitStep(StepKey key, StepKey nextStepKey, Client client) { super(key, nextStepKey); this.client = client; } protected Client getClient() { return client; } public abstract void evaluateCondition(Metadata metadata, Index index, Listener listener, TimeValue masterTimeout); public interface Listener { void onResponse(boolean conditionMet, ToXContentObject informationContext); void onFailure(Exception e); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy