123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #import <Foundation/Foundation.h>
- @class EMMulticastDelegateEnumerator;
- /**
- * This class provides multicast delegate functionality. That is:
- * - it provides a means for managing a list of delegates
- * - any method invocations to an instance of this class are automatically forwarded to all delegates
- *
- * For example:
- *
- * // Make this method call on every added delegate (there may be several)
- * [multicastDelegate cog:self didFindThing:thing];
- *
- * This allows multiple delegates to be added to an xmpp stream or any xmpp module,
- * which in turn makes development easier as there can be proper separation of logically different code sections.
- *
- * In addition, this makes module development easier,
- * as multiple delegates can usually be handled in a manner similar to the traditional single delegate paradigm.
- *
- * This class also provides proper support for GCD queues.
- * So each delegate specifies which queue they would like their delegate invocations to be dispatched onto.
- *
- * All delegate dispatching is done asynchronously (which is a critically important architectural design).
- **/
- @interface EMMulticastDelegate : NSObject
- - (void)addDelegate:(id)delegate delegateQueue:(dispatch_queue_t)delegateQueue;
- - (void)removeDelegate:(id)delegate delegateQueue:(dispatch_queue_t)delegateQueue;
- - (void)removeDelegate:(id)delegate;
- - (void)removeAllDelegates;
- - (NSUInteger)count;
- - (NSUInteger)countOfClass:(Class)aClass;
- - (NSUInteger)countForSelector:(SEL)aSelector;
- - (BOOL)hasDelegateThatRespondsToSelector:(SEL)aSelector;
- - (EMMulticastDelegateEnumerator *)delegateEnumerator;
- @end
- @interface EMMulticastDelegateEnumerator : NSObject
- - (NSUInteger)count;
- - (NSUInteger)countOfClass:(Class)aClass;
- - (NSUInteger)countForSelector:(SEL)aSelector;
- - (BOOL)getNextDelegate:(id *)delPtr delegateQueue:(dispatch_queue_t *)dqPtr;
- - (BOOL)getNextDelegate:(id *)delPtr delegateQueue:(dispatch_queue_t *)dqPtr ofClass:(Class)aClass;
- - (BOOL)getNextDelegate:(id *)delPtr delegateQueue:(dispatch_queue_t *)dqPtr forSelector:(SEL)aSelector;
- @end
|