Skip to content

Custom Annotations

This page covers custom annotations used in the Core API.


@ThreadBlock

What is it?

This annotation marks methods that block the current thread.

@ThreadBlock
public void loadData() {
    // blocking operation
}