#import "SCORStreamingState.h"

/** Delegate to get notified when the state is changed. */
@protocol SCORStreamingDelegate<NSObject>

@optional
/** Called when the sate is changed. */
- (void)onStateChanged:(SCORStreamingState)oldState
              newState:(SCORStreamingState)newState
           eventLabels:(NSDictionary *)eventLabels
             timeDelta:(NSTimeInterval)timeDelta;

@end