We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
An Intent is sent by using the Transmitter class. A TransmitterException is thrown in case of error.
Transmitter
TransmitterException
// Create an Intent object to send. Intent intent = new Intent(); // Transmitter using default multicast address and port. Transmitter transmitter = new Transmitter(); try { transmitter.transmit(intent); } catch (TransmitterException exception) { // Handle error }