PNXMPPFramework/Extensions/XEP-0198/Memory Storage/XMPPStreamManagementMemoryStorage.h
2016-02-24 16:56:39 +01:00

15 lines
537 B
Objective-C

#import <Foundation/Foundation.h>
#import "XMPPStreamManagement.h"
/**
* This class provides an in-memory only storage system for XMPPStreamManagement.
* As such, it will only support stream resumption so long as the application doesn't terminate.
*
* This class should be considered primarily for testing.
* An application making use of stream management should likely transition
* to a persistent storage layer before distribution.
**/
@interface XMPPStreamManagementMemoryStorage : NSObject <XMPPStreamManagementStorage>
@end