-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult.go
109 lines (93 loc) · 2.27 KB
/
result.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package redisclient
import (
"time"
)
// baseResult is the base result for redis commands
type baseResult interface {
Err() error
}
// Result is the common result for redis commands
type Result interface {
baseResult
Val() interface{}
Result() (interface{}, error)
}
// StringResult is the string result for redis commands
type StringResult interface {
baseResult
Val() string
Result() (string, error)
Scan(val interface{}) error
}
// FloatResult is the float result for redis commands
type FloatResult interface {
baseResult
Val() float64
Result() (float64, error)
}
// IntResult is the int result for redis commands
type IntResult interface {
baseResult
Val() int64
Result() (int64, error)
}
// SliceResult is the slice result for redis commands
type SliceResult interface {
baseResult
Val() []interface{}
Result() ([]interface{}, error)
}
// StatusResult is the status result for redis commands
type StatusResult interface {
baseResult
Val() string
Result() (string, error)
}
// BoolResult the bool result for redis commands
type BoolResult interface {
baseResult
Val() bool
Result() (bool, error)
}
// IntSliceResult is the int slice result for redis commands
type IntSliceResult interface {
baseResult
Val() []int64
Result() ([]int64, error)
}
// StringSliceResult is the string slice result for redis commands
type StringSliceResult interface {
baseResult
Val() []string
Result() ([]string, error)
}
// BoolSliceResult is the bool slice result for redis commands
type BoolSliceResult interface {
baseResult
Val() []bool
Result() ([]bool, error)
}
// StringStringMapResult is the string string map result for redis commands
type StringStringMapResult interface {
baseResult
Val() map[string]string
Result() (map[string]string, error)
}
// StringIntMapResult is the string int map result for redis commands
type StringIntMapResult interface {
baseResult
Val() map[string]int64
Result() (map[string]int64, error)
}
// StringStructMapResult is the string struct map result for redis commands
type StringStructMapResult interface {
baseResult
Val() map[string]struct{}
Result() (map[string]struct{}, error)
}
// DurationResult is the duration result for redis commands
type DurationResult interface {
baseResult
Val() time.Duration
Result() (time.Duration, error)
}