de.ruedigermoeller.fastcast.remoting.Loopback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fast-cast Show documentation
Show all versions of fast-cast Show documentation
a fast brokerless messaging library based on reliable UDP multicast
package de.ruedigermoeller.fastcast.remoting;
import java.lang.annotation.*;
/**
* defines that calls on a remote proxy for this method should be looped back to local instances.
* Note that loopback calls are delivered directly to the local receiving queue. This should
* have no impact on application logic.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Loopback {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy