2017-06-24 04:09:45 +00:00
|
|
|
package storage
|
2016-05-02 03:04:19 +00:00
|
|
|
|
|
|
|
// Storage interface
|
|
|
|
type Storage interface {
|
2016-05-02 11:42:21 +00:00
|
|
|
Init() error
|
|
|
|
Reset()
|
2016-05-02 09:03:08 +00:00
|
|
|
AddTotalCount(int64)
|
|
|
|
AddIosSuccess(int64)
|
|
|
|
AddIosError(int64)
|
|
|
|
AddAndroidSuccess(int64)
|
|
|
|
AddAndroidError(int64)
|
|
|
|
GetTotalCount() int64
|
|
|
|
GetIosSuccess() int64
|
|
|
|
GetIosError() int64
|
|
|
|
GetAndroidSuccess() int64
|
|
|
|
GetAndroidError() int64
|
2016-05-02 03:04:19 +00:00
|
|
|
}
|