Lifecycle methods
destroy
The destroy method permanently shuts down the Synclet by disconnecting all connectors and transports, then releasing all owned resources. After calling destroy(), the Synclet instance cannot be restarted and should be discarded. Read more.
isStarted
The isStarted method reports whether the synclet is currently running. Read more.
start
The start method activates the Synclet by connecting its data and meta connectors, attaching transports, and beginning message processing. This method must be called before performing sync operations. It invokes the optional onStart implementation callback if provided. Read more.
stop
The stop method pauses the Synclet by halting connector activity and suspending message processing. The Synclet can be restarted later with start(). This method does not destroy the Synclet or release its resources. It invokes the optional onStop implementation callback if provided. Read more.