5 // Created by Jens Alfke on 1/22/08.
6 // Copyright 2008 Jens Alfke. All rights reserved.
9 #import "MYDNSService.h"
10 @class MYBonjourRegistration;
13 /** Searches for Bonjour services of a specific type. */
14 @interface MYBonjourBrowser : MYDNSService
17 NSString *_serviceType;
20 NSMutableSet *_services, *_addServices, *_rmvServices;
22 MYBonjourRegistration *_myRegistration;
26 /** Initializes a new MYBonjourBrowser.
27 Call -start to begin browsing.
28 @param serviceType The name of the service type to look for, e.g. "_http._tcp". */
29 - (id) initWithServiceType: (NSString*)serviceType;
31 @property (assign) id delegate;
33 /** Is the browser currently browsing? */
34 @property (readonly) BOOL browsing;
36 /** The set of currently found services. These are instances of the serviceClass,
37 which is MYBonjourService by default.
38 This is KV-observable. */
39 @property (readonly) NSSet *services;
41 /** The class of objects to create to represent services.
42 The default value is [MYBonjourService class]; you can change this, but only
43 to a subclass of that. */
44 @property Class serviceClass;
46 /** My own registration for this service type.
47 This object is created on demand and won't be started up until you tell it to.
48 Before starting it, you'll need to set its port, and optionally its name.
49 Your own registration will _not_ be visible in the set of services.*/
50 @property (readonly) MYBonjourRegistration *myRegistration;