You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pEpObjCAdapter/pEpObjCAdapter/PEPInternalSession.h

40 lines
1.3 KiB
Objective-C

//
// PEPSession.h
// pEpiOSAdapter
//
// Created by Volker Birk on 08.07.15.
// Copyright (c) 2015 p≡p. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "PEPSessionProtocol.h"
#import "sync_api.h"
#import "PEPObjCAdapter.h"
/**
Represents a real pEp session (in contrast to PEPSession, which is a fake session to handle to the client).
Never expose this class to the client.
- You must use one session on one thread only to assure no concurrent calls to one session take place.
- As long as you can assure the session is not accessed from anywhere else, it is OK to init/deinit a session on another thread than the one it is used on.
- N threads <-> N sessions, with the constraint that a session is never used in a pEpEngine call more than once at the same time.
Also the Engine requires that the first session is created on the main thread and is kept allive until all other created sessions have been terminated.
*/
@interface PEPInternalSession : NSObject <PEPSessionProtocol>
@property (nonatomic) PEP_SESSION _Nullable session;
- (_Nullable instancetype)init;
/**
Configures the session's unecryptedSubjectEnabled value.
@param enabled Whether or not mail subjects should be encrypted when using this session
*/
- (void)configUnEncryptedSubjectEnabled:(BOOL)enabled;
@end