Package com.thecoderscorner.menu.remote
Interface RemoteConnectorListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
This is the low level, communication listener interface that you implement in order to know when commands have
been received from the remote device. Normally, this is used by the RemoteMenuController and not something a
user would directly subscribe to (unless you are adding custom messages to the protocol).
-
Method Summary
Modifier and TypeMethodDescriptionvoidonCommand(RemoteConnector connector, MenuCommand command)Sent by the connector when a message has been decoded.
-
Method Details