- All Known Implementing Classes:
LoggerPlugin
public interface Plugin
Represents a communicator plug-in. A plug-in generally adds a feature to a communicator,
such as support for an additional transport. The communicator loads its plug-ins in two stages:
the first stage creates the plug-ins, and the second stage calls
initialize() on each one.-
Method Summary
Modifier and TypeMethodDescriptionvoiddestroy()Destroys this plugin.voidPerforms any necessary initialization steps.
-
Method Details
-
initialize
void initialize()Performs any necessary initialization steps. -
destroy
void destroy()Destroys this plugin. This method is called when the communicator is destroyed.
-