Vuo 2.4.4
Loading...
Searching...
No Matches
VuoSyphonListener.h
Go to the documentation of this file.
1
11#import <AppKit/AppKit.h>
12#import <Syphon.h>
13
15#include "VuoImage.h"
16
20@interface VuoSyphonListener : NSObject
21{
22 void (*callback)(VuoImage);
25 dispatch_queue_t refreshQueue;
26}
27
28@property(retain) SyphonClient *syphonClient;
29
30-(id) init;
31-(void) startListeningWithServerDescription:(VuoSyphonServerDescription)description callback:(void(*)(VuoImage))receivedFrame;
32-(void) stopListening;
33-(void) refreshSyphonClientThreadUnsafe:(VuoList_VuoSyphonServerDescription)serverDescriptions;
34-(void) refreshSyphonClient:(VuoList_VuoSyphonServerDescription)serverDescriptions;
35
36@end