Package zendesk.support.suas
Class Suas
- java.lang.Object
-
- zendesk.support.suas.Suas
-
public class Suas extends java.lang.Object
Suas - This is the entry point.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class and Description static class
Suas.Builder
Fluent API for creating aStore
.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static Suas.Builder
createStore(java.util.Collection<Reducer> reducers)
Creates aStore
.static Suas.Builder
createStore(Reducer... reducers)
Creates aStore
.
-
-
-
Method Detail
-
createStore
public static Suas.Builder createStore(java.util.Collection<Reducer> reducers)
Creates aStore
.A
Store
must at least have oneReducer
.
It's not allowed to have twoReducer
registered to the same key.- Parameters:
reducers
- a collection ofReducer
- Returns:
- a instance of
Suas.Builder
for further configuration
-
createStore
public static Suas.Builder createStore(Reducer... reducers)
Creates aStore
.A
Store
must at least have oneReducer
.
It's not allowed to have twoReducer
registered to the same key.- Parameters:
reducers
- a collection ofReducer
- Returns:
- a instance of
Suas.Builder
for further configuration
-
-