@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface POPSyncConc
Defines a method as synchronous and concurrent. Synchronous method calls wait
for the call to finish before continuing the execution of the calling code.
Concurrent methods can be called in parallel by multiple processes. They can
not be executed if a mutex call is currently being executed on the target
object