EAEDiscovering

Objective-C

@protocol EAEDiscovering <NSObject>

@property (weak, nonatomic) id<EAEDiscoveringDelegate> delegate;

/**
 *  @brief Method which starts the service discovery
 *
 *  @param timeout The discovery timeout
 */
- (void) startDiscovery: (int) timeout;

/**
 *  Method which stops the service discovery
 */
- (void) stopDiscovery;

@end

Swift

protocol EAEDiscovering : NSObjectProtocol

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property (weak, nonatomic) id<EAEDiscoveringDelegate> delegate

    Swift

    weak var delegate: (any EAEDiscoveringDelegate)! { get set }
  • @brief Method which starts the service discovery

    Declaration

    Objective-C

    - (void)startDiscovery:(int)timeout;

    Swift

    func startDiscovery(_ timeout: Int32)

    Parameters

    timeout

    The discovery timeout

  • Method which stops the service discovery

    Declaration

    Objective-C

    - (void)stopDiscovery;

    Swift

    func stopDiscovery()