KWProbePoller.h 425 B

12345678910111213141516171819
  1. //
  2. // KWProbePoller.h
  3. // iOSFalconCore
  4. //
  5. // Created by Luke Redpath on 13/01/2011.
  6. // Copyright 2011 LJR Software Limited. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "KWProbe.h"
  10. #define kKW_DEFAULT_PROBE_DELAY 0.1
  11. @interface KWProbePoller : NSObject
  12. - (id)initWithTimeout:(NSTimeInterval)theTimeout delay:(NSTimeInterval)theDelay shouldWait:(BOOL)wait;
  13. - (BOOL)check:(id<KWProbe>)probe;
  14. @end