PubSub+ Messaging API For C  7.29.0.6
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ex/ios/EventCallbackProtocol.h
/*
* Copyright 2014-2024 Solace Corporation. All rights reserved.
*/
#import <Foundation/Foundation.h>
@protocol EventCallbackProtocol <NSObject>
- (void)eventCallbackWithSession:(solClient_opaqueSession_pt)opaqueSession_p
eventInfo:
userData:(void *)user_p;
void eventCallback(solClient_opaqueSession_pt opaqueSession_p,
void *user_p);
- (void)cacheEventCallbackWithSession:
(solClient_opaqueSession_pt)opaqueSession_p
eventInfo:(solCache_eventCallbackInfo_pt)eventInfo_p
userData:(void *)user_p;
void cacheEventCallback(solClient_opaqueSession_pt opaqueSession_p,
void *user_p);
- (void)eventPerfCallbackWithSession:(solClient_opaqueSession_pt)opaqueSession_p
eventInfo_p
userData:(void *)user_p;
void eventPerfCallback(solClient_opaqueSession_pt opaqueSession_p,
void *user_p);
@end