JUCE
|
Watches the network for broadcasts from Advertiser objects, and keeps a list of all the currently active instances. More...
Public Member Functions | |
AvailableServiceList (const String &serviceTypeUID, int broadcastPort) | |
Creates an AvailableServiceList that will bind to the given port number and watch the network for Advertisers broadcasting the given service type. More... | |
~AvailableServiceList () override | |
Destructor. More... | |
std::vector< Service > | getServices () const |
Returns a list of the currently known services. More... | |
Public Attributes | |
std::function< void()> | onChange |
A lambda that can be set to receive a callback when the list changes. More... | |
Watches the network for broadcasts from Advertiser objects, and keeps a list of all the currently active instances.
Just create an instance of AvailableServiceList and it will start listening - you can register a callback with its onChange member to find out when services appear/disappear, and you can call getServices() to find out the current list.
NetworkServiceDiscovery::AvailableServiceList::AvailableServiceList | ( | const String & | serviceTypeUID, |
int | broadcastPort | ||
) |
Creates an AvailableServiceList that will bind to the given port number and watch the network for Advertisers broadcasting the given service type.
This will only detect broadcasts from an Advertiser object with a matching serviceTypeUID value, and where the broadcastPort matches.
|
override |
Destructor.
std::vector<Service> NetworkServiceDiscovery::AvailableServiceList::getServices | ( | ) | const |
Returns a list of the currently known services.
std::function<void()> NetworkServiceDiscovery::AvailableServiceList::onChange |
A lambda that can be set to receive a callback when the list changes.