VGBaseClientDelegate

Objective-C

@protocol VGBaseClientDelegate <NSObject>
// Connection API
- (void) client:(VGBaseClient*)client didReceiveSessionErrorWithReason:(VGSessionErrorReason)reason;
// Optional Base Client Delegate methods
@optional
- (void) clientWillReconnect:(VGBaseClient*)client;
- (void) clientDidReconnect:(VGBaseClient*)client;
@end

Swift

protocol VGBaseClientDelegate : NSObjectProtocol

Undocumented