@Retention(value=RUNTIME) @Target(value=METHOD) public @interface HotMethod
@HotMethod marks a method that is expected to be performance
critical. It guides library maintainers and tooling on optimisation targets.
The optional value carries a short label such as a hot-count threshold.
Retention and effect: Retained at runtime with no behavioural impact unless recognised by Chronicle tooling.
@HotMethod("critical polling loop")
void runLoop();
This annotation has no runtime impact but aids Chronicle benchmarking tools.
ForceInline@NotNull public abstract @NotNull String value
Copyright © 2026 Chronicle Software Ltd. All rights reserved.