Files
ifish/Ifish/AliPush/UTMini.framework/Headers/AppMonitorMeasureValue.h
T
wbzhan 25c051d5f1 1、变更推送为阿里云推,清除云信IM以及推送内容;
2、消息页面全新改版;
3、部分微小Bug修复
2019-05-24 19:21:31 +08:00

34 lines
760 B
Objective-C

//
// AppMonitorMeasureValue.h
// AppMonitor
//
// Created by christ.yuj on 15/2/15.
// Copyright (c) 2015年 君展. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
* 监控指标值
*
*/
@interface AppMonitorMeasureValue : NSObject
/**
* 耗时操作是否已经完成
*/
@property (nonatomic, assign) BOOL isFinish;
@property (nonatomic, strong) NSNumber * offset;
@property (nonatomic, strong) NSNumber * value;
- (instancetype)initWithValue:(NSNumber *)value;
- (instancetype)initWithValue:(NSNumber *)value offset:(NSNumber *)offset;
- (void)merge:(AppMonitorMeasureValue *)measureValue;
//为了json序列化
- (NSDictionary *)jsonDict;
//json反序列化
- (instancetype)initWithDictionary:(NSDictionary *)dictionary;
@end