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

com.github.mictaege.jitter.api.Fork Maven / Gradle / Ivy

Go to download

This repository contains the _jitter_ API. For using _jitter_ see the https://github.com/mictaege/jitter_plugin documentation.

There is a newer version: 2023.3
Show newest version
package com.github.mictaege.jitter.api;

import java.lang.annotation.Documented;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.METHOD;

@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({METHOD})
@Repeatable(Gateway.class)
public @interface Fork {

    String ifActive();

    String to();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy