iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
ISCIReadWriteLock
@protocol ISCIReadWriteLock <NSObject>
Defines the interface for read-write lock
-
Locks the read lock
Declaration
Objective-C
- (void)readLock;
Swift
func readLock()
-
Unlocks the read lock
Declaration
Objective-C
- (void)readUnlock;
Swift
func readUnlock()
-
Locks the write lock
Declaration
Objective-C
- (void)writeLock;
Swift
func writeLock()
-
Unlocks the write lock
Declaration
Objective-C
- (void)writeUnlock;
Swift
func writeUnlock()