Annotation Interface NotNetworkReplicated


@Retention(CLASS) @Documented @Inherited @Target({FIELD,TYPE,METHOD}) public @interface NotNetworkReplicated
The @NotNetworkReplicated annotation signifies that the attached element is not replicated over the network by some system. This is not functional and exists for programmers only. It is nearly similar to its counterpart, @NetworkReplicated, with the exception that this marks elements on a "must not" basis (not being replicated is default, so this signifies that it shouldn't be replicated). It has a number of implications when used:
  - When used on a field, the field explicitly should not be synchronized.
  - When used on a class, the class's members explicitly should not be synchronized.
  - When used on a method, the action must run on the caller's side only.