@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.METHOD)
public @interface ActiveMethod
Marks a method within an ActiveObject class for actor-backed execution.
When blocking = true (the default), the caller blocks
until the actor processes the method and returns the result.
When blocking = false, the method returns an
Awaitable immediately.
| Type | Name and Description |
|---|---|
boolean |
blockingIf true (default), the caller blocks until the method
completes. |