mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-04 15:05:36 +00:00
da3d65c18f
Thereby avoids a whole bunch of complicated machinations that would otherwise have been required of the multimachine.
29 lines
616 B
Objective-C
29 lines
616 B
Objective-C
//
|
|
// CSBestEffortUpdater.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 16/06/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreVideo/CoreVideo.h>
|
|
|
|
@class CSBestEffortUpdater;
|
|
|
|
@protocol CSBestEffortUpdaterDelegate <NSObject>
|
|
|
|
- (void)bestEffortUpdater:(CSBestEffortUpdater *)bestEffortUpdater runForInterval:(NSTimeInterval)interval didSkipPreviousUpdate:(BOOL)didSkipPreviousUpdate;
|
|
|
|
@end
|
|
|
|
|
|
@interface CSBestEffortUpdater : NSObject
|
|
|
|
@property (nonatomic, weak) id<CSBestEffortUpdaterDelegate> delegate;
|
|
|
|
- (void)update;
|
|
- (void)flush;
|
|
|
|
@end
|