Skip to content

Commit

Permalink
NHNCloudSDK 1.6.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
hyup1028 committed Jul 20, 2023
1 parent d91e25d commit e439731
Show file tree
Hide file tree
Showing 65 changed files with 131 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@

- (NSArray *)queueObjects;


- (void)queueClear;

//Queue 저장이 필요할 경우 사용
/**
Use when you need to save the contents of the queue.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
//
// NHNCloudPurchaseBlockQueueWorker.h
// NHNCloudIAP
//
// Created by HyupM1 on 2023/07/03.
//

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

@interface NHNCloudBlockQueueWorker : NSObject

@property (nonatomic, readonly, getter=isExecuting) BOOL executing;
@property (nonatomic, readonly) NSTimeInterval lastExecuteTime;

- (instancetype)initWithQueueCapacity:(int)queueCapacity;

- (void)addObject:(id)object;

- (void)resume;
- (void)suspend;

- (void)clear;
- (NSUInteger)count;
@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#import "NHNCloudKeychainCache.h"
#import "NHNCloudPreferences.h"
#import "NHNCloudCameraManager.h"
#import "NHNCloudBlockQueueWorker.h"

//! Project version number for NHNCloudCommon.
FOUNDATION_EXPORT double NHNCloudCommonVersionNumber;
Expand Down
Binary file modified Frameworks/NHNCloudCommon.framework/Info.plist
Binary file not shown.
Binary file modified Frameworks/NHNCloudCommon.framework/NHNCloudCommon
Binary file not shown.
Binary file modified Frameworks/NHNCloudCore.framework/Info.plist
Binary file not shown.
Binary file modified Frameworks/NHNCloudCore.framework/NHNCloudCore
Binary file not shown.
Binary file modified Frameworks/NHNCloudIAP.framework/Info.plist
Binary file not shown.
Binary file modified Frameworks/NHNCloudIAP.framework/NHNCloudIAP
Binary file not shown.
Binary file modified Frameworks/NHNCloudLogger.framework/Info.plist
Binary file not shown.
Binary file modified Frameworks/NHNCloudLogger.framework/NHNCloudLogger
Binary file not shown.
Binary file modified Frameworks/NHNCloudOCR.framework/Info.plist
Binary file not shown.
Binary file modified Frameworks/NHNCloudOCR.framework/NHNCloudOCR
Binary file not shown.
Binary file modified Frameworks/NHNCloudPush.framework/Info.plist
Binary file not shown.
Binary file modified Frameworks/NHNCloudPush.framework/NHNCloudPush
Binary file not shown.
Binary file modified SymbolUploader
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@

- (NSArray *)queueObjects;


- (void)queueClear;

//Queue 저장이 필요할 경우 사용
/**
Use when you need to save the contents of the queue.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
//
// NHNCloudPurchaseBlockQueueWorker.h
// NHNCloudIAP
//
// Created by HyupM1 on 2023/07/03.
//

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

@interface NHNCloudBlockQueueWorker : NSObject

@property (nonatomic, readonly, getter=isExecuting) BOOL executing;
@property (nonatomic, readonly) NSTimeInterval lastExecuteTime;

- (instancetype)initWithQueueCapacity:(int)queueCapacity;

- (void)addObject:(id)object;

- (void)resume;
- (void)suspend;

- (void)clear;
- (NSUInteger)count;
@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#import "NHNCloudKeychainCache.h"
#import "NHNCloudPreferences.h"
#import "NHNCloudCameraManager.h"
#import "NHNCloudBlockQueueWorker.h"

//! Project version number for NHNCloudCommon.
FOUNDATION_EXPORT double NHNCloudCommonVersionNumber;
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@

- (NSArray *)queueObjects;


- (void)queueClear;

//Queue 저장이 필요할 경우 사용
/**
Use when you need to save the contents of the queue.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
//
// NHNCloudPurchaseBlockQueueWorker.h
// NHNCloudIAP
//
// Created by HyupM1 on 2023/07/03.
//

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

@interface NHNCloudBlockQueueWorker : NSObject

@property (nonatomic, readonly, getter=isExecuting) BOOL executing;
@property (nonatomic, readonly) NSTimeInterval lastExecuteTime;

- (instancetype)initWithQueueCapacity:(int)queueCapacity;

- (void)addObject:(id)object;

- (void)resume;
- (void)suspend;

- (void)clear;
- (NSUInteger)count;
@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#import "NHNCloudKeychainCache.h"
#import "NHNCloudPreferences.h"
#import "NHNCloudCameraManager.h"
#import "NHNCloudBlockQueueWorker.h"

//! Project version number for NHNCloudCommon.
FOUNDATION_EXPORT double NHNCloudCommonVersionNumber;
Expand Down
Loading

0 comments on commit e439731

Please sign in to comment.