Interface OutputChannelServer
public interface OutputChannelServer
- Author:
- Philip Tobin
-
Method Summary
Modifier and TypeMethodDescriptiongetOutputChannel(String ecuConfigurationName, String outputChannelName) returns theOutputChannelbelonging to the provided ecuConfiguration NameString[]getOutputChannels(String ecuConfigurationName) returns a String[] of all OutputChannels available for the provided ecuNamevoidsubscribe(String ecuConfigurationName, String outputChannelName, OutputChannelClient client) voidunsubscribe(OutputChannelClient listener) unsubscribe a listener, it will no longer receive updated values for any OutputChannelsvoidunsubscribeConfiguration(String ecuConfigurationName) all listeners for the provided ecuConfigurationName
-
Method Details
-
subscribe
void subscribe(String ecuConfigurationName, String outputChannelName, OutputChannelClient client) throws ControllerException - Throws:
ControllerException
-
unsubscribeConfiguration
all listeners for the provided ecuConfigurationName -
unsubscribe
unsubscribe a listener, it will no longer receive updated values for any OutputChannels -
getOutputChannels
returns a String[] of all OutputChannels available for the provided ecuName- Throws:
ControllerException
-
getOutputChannel
OutputChannel getOutputChannel(String ecuConfigurationName, String outputChannelName) throws ControllerException returns theOutputChannelbelonging to the provided ecuConfiguration Name- Throws:
ControllerException
-