-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathStateRuntime.java
More file actions
195 lines (174 loc) · 6.44 KB
/
StateRuntime.java
File metadata and controls
195 lines (174 loc) · 6.44 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/*
* Copyright 2021 Layotto Authors
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spec.sdk.runtime.v1.domain;
import spec.sdk.runtime.v1.domain.state.DeleteStateRequest;
import spec.sdk.runtime.v1.domain.state.ExecuteStateTransactionRequest;
import spec.sdk.runtime.v1.domain.state.GetBulkStateRequest;
import spec.sdk.runtime.v1.domain.state.GetStateRequest;
import spec.sdk.runtime.v1.domain.state.SaveStateRequest;
import spec.sdk.runtime.v1.domain.state.State;
import spec.sdk.runtime.v1.domain.state.StateOptions;
import spec.sdk.runtime.v1.domain.state.TransactionalStateOperation;
import java.util.List;
import java.util.Map;
public interface StateRuntime {
/**
* Retrieve a State based on their key.
*
* @param storeName The name of the state store.
* @param key The key of the State to be retrieved.
* @param clazz The type of State needed as return.
* @param <T> The type of the return.
*/
<T> State<T> getState(String storeName, String key, Class<T> clazz);
/**
* Retrieve a State based on their key.
*
* @param storeName The name of the state store.
* @param key The key of the State to be retrieved.
* @param options Optional settings for retrieve operation.
* @param clazz The Type of State needed as return.
* @param <T> The Type of the return.
*/
<T> State<T> getState(String storeName, String key, StateOptions options, Class<T> clazz);
/**
* Retrieve a State based on their key.
*
* @param request The request to get state.
* @param clazz The Class of State needed as return.
* @param <T> The Type of the return.
* @return The requested State.
*/
<T> State<T> getState(GetStateRequest request, Class<T> clazz);
/**
* Retrieve a State based on their key.
*
* @param request The request to get state.
* @param clazz The Class of State needed as return.
* @param timeoutMs timeout in milliseconds
* @param <T> The Type of the return.
* @return the requested State.
*/
<T> State<T> getState(GetStateRequest request, Class<T> clazz, int timeoutMs);
/**
* Retrieve bulk States based on their keys.
*
* @param storeName The name of the state store.
* @param keys The keys of the State to be retrieved.
* @param clazz The type of State needed as return.
* @param <T> The type of the return.
*/
<T> List<State<T>> getBulkState(String storeName, List<String> keys, Class<T> clazz);
/**
* Retrieve bulk States based on their keys.
*
* @param request The request to get state.
* @param clazz The Class of State needed as return.
* @param <T> The Type of the return.
* @return The requested State.
*/
<T> List<State<T>> getBulkState(GetBulkStateRequest request, Class<T> clazz);
/**
* Retrieve bulk States based on their keys.
*
* @param request The request to get state.
* @param clazz The Class of State needed as return.
* @param <T> The Type of the return.
* @param timeoutMs The time limit(millisecond) of this call.
* @return The requested State.
*/
<T> List<State<T>> getBulkState(GetBulkStateRequest request, Class<T> clazz, int timeoutMs);
/**
* Execute a transaction.
*
* @param storeName The name of the state store.
* @param operations The operations to be performed.
*/
void executeStateTransaction(String storeName, List<TransactionalStateOperation<?>> operations);
/**
* Execute a transaction.
*
* @param request Request to execute transaction.
*/
void executeStateTransaction(ExecuteStateTransactionRequest request);
/**
* Save/Update a list of states.
*
* @param storeName The name of the state store.
* @param states The States to be saved.
*/
void saveBulkState(String storeName, List<State<?>> states);
/**
* Save/Update a list of states.
*
* @param request Request to save states.
*/
void saveBulkState(SaveStateRequest request);
/**
* Save/Update a list of states.
*
* @param request Request to save bulk states.
* @param timeoutMs timeout in milliseconds
*/
void saveBulkState(SaveStateRequest request, int timeoutMs);
/**
* Save/Update a state.
*
* @param storeName The name of the state store.
* @param key The key of the state.
* @param value The value of the state.
*/
void saveState(String storeName, String key, Object value);
/**
* Save/Update a state.
*
* @param storeName The name of the state store.
* @param key The key of the state.
* @param etag The etag to be used.
* @param value The value of the state.
* @param options The Options to use for each state.
*/
void saveState(String storeName, String key, String etag, Object value, StateOptions options,
Map<String, String> metadata);
/**
* Delete a state.
*
* @param storeName The name of the state store.
* @param key The key of the State to be removed.
*/
void deleteState(String storeName, String key);
/**
* Delete a state.
*
* @param storeName The name of the state store.
* @param key The key of the State to be removed.
* @param etag Optional etag for conditional delete.
* @param options Optional settings for state operation.
*/
void deleteState(String storeName, String key, String etag, StateOptions options);
/**
* Delete a state.
*
* @param request Request to delete a state.
*/
void deleteState(DeleteStateRequest request);
/**
* Delete a state.
*
* @param request Request to delete a state.
* @param timeoutMs timeout in milliseconds
*/
void deleteState(DeleteStateRequest request, int timeoutMs);
}