main
 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
 9#import <Foundation/Foundation.h>
10#import "KWProbe.h"
11
12#define kKW_DEFAULT_PROBE_DELAY 0.1
13
14@interface KWProbePoller : NSObject
15{
16  NSTimeInterval timeoutInterval;
17  NSTimeInterval delayInterval;
18}
19- (id)initWithTimeout:(NSTimeInterval)theTimeout delay:(NSTimeInterval)theDelay;
20- (BOOL)check:(id<KWProbe>)probe;
21@end