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

29 lines
854 B
Objective-C

//
// AppMonitorMeasure.h
// AppMonitor
//
// Created by christ.yuj on 15/2/15.
// Copyright (c) 2015年 君展. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "AppMonitorMeasureValue.h"
/**
* 监控指标项
*
*/
@interface AppMonitorMeasure : NSObject
@property (nonatomic, copy) NSString *name;
@property (nonatomic, strong) NSNumber *constantValue;
@property (nonatomic, strong) NSNumber *min;
@property (nonatomic, strong) NSNumber *max;
- (instancetype)initWithName:(NSString *)name;
- (instancetype)initWithName:(NSString *)name constantValue:(NSNumber *)constantValue;
- (instancetype)initWithName:(NSString *)name constantValue:(NSNumber *)constantValue min:(NSNumber *)min max:(NSNumber *)max;
- (void)setRangeWithMin:(NSNumber *)min max:(NSNumber *)max;
- (BOOL)valid:(AppMonitorMeasureValue *)measureValue;
@end