io.deephaven.api.util.ConcurrentMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-table-api Show documentation
Show all versions of deephaven-table-api Show documentation
The Deephaven table operations API
The newest version!
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.api.util;
import java.lang.annotation.*;
/**
* Indicates that the annotated method should be executed concurrently with respect to the {@code UpdateGraph} (UGP).
* Concurrent execution will not acquire the UGP lock before invocation, and will be run concurrently with other
* annotated methods whenever possible.
*/
@Documented
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface ConcurrentMethod {
}