destroy method

  1. @override
void destroy()
override

Destroy the communicator. This Java-only method overrides close in java.lang.AutoCloseable and does not throw any exception. @see #destroy Destroy the communicator. This operation calls {@link #shutdown} implicitly. Calling {@link #destroy} cleans up memory, and shuts down this communicator's client functionality and destroys all object adapters. Subsequent calls to {@link #destroy} are ignored. @see #shutdown @see ObjectAdapter#destroy

Implementation

@override
void destroy() {
  instance.destroy();
}