//
//  LLBaseEmitter.h
//  LLLocalytics
//
//  Created by Anand Bashyam on 2/24/18.
//  Copyright © 2018 Facebook. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "LLObservingEmitter.h"

@interface LLBlockingEmitter : LLObservingEmitter
- (void)respond:(id)response toEvent:(NSString*)eventName;
- (void)sendEvent:(NSString*)eventName withData:(id)data andWait:(void(^)(id value))completionHandler;
@end
