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

io.logspace.jvm.agent.api.AbstractSchedulerAgent Maven / Gradle / Ivy

The newest version!
/**
 * Logspace
 * Copyright (c) 2015 Indoqa Software Design und Beratung GmbH. All rights reserved.
 * This program and the accompanying materials are made available under the terms of
 * the Eclipse Public License Version 1.0, which accompanies this distribution and
 * is available at http://www.eclipse.org/legal/epl-v10.html.
 */
package io.logspace.jvm.agent.api;

import static io.logspace.jvm.agent.api.order.TriggerType.*;

import io.logspace.jvm.agent.api.order.TriggerType;

/**
 * Base class for {@link Agent Agents} that will be triggered by a scheduler.
 */
public abstract class AbstractSchedulerAgent extends AbstractAgent implements SchedulerAgent {

    private static final TriggerType[] TRIGGER_TYPES = new TriggerType[] {Off, Scheduler};

    protected AbstractSchedulerAgent(String id, String type) {
        super(id, type, TRIGGER_TYPES);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy