com.github.mictaege.jitter.api.Gateway Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jitter-api Show documentation
Show all versions of jitter-api Show documentation
This repository contains the _jitter_ API. For using _jitter_ see the https://github.com/mictaege/jitter_plugin documentation.
package com.github.mictaege.jitter.api;
import java.lang.annotation.Documented;
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})
public @interface Gateway {
Fork[] value();
}