接口 StateStore
-
- 所有超级接口:
java.lang.AutoCloseable
- 所有已知子接口:
ByteBufferStateStore,CounterStateStore
@Public @Evolving public interface StateStore extends java.lang.AutoCloseable
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voidclose()java.lang.Stringfqsn()The fully qualified state store name.voidinit(StateStoreContext ctx)Initialize the state store.java.lang.Stringname()The name of this store.java.lang.Stringnamespace()The namespace of this store.java.lang.Stringtenant()The tenant of this store.
-
-
-
方法详细资料
-
tenant
java.lang.String tenant()
The tenant of this store.- 返回:
- the state store tenant.
-
namespace
java.lang.String namespace()
The namespace of this store.- 返回:
- the state store namespace.
-
name
java.lang.String name()
The name of this store.- 返回:
- the state store name.
-
fqsn
java.lang.String fqsn()
The fully qualified state store name.- 返回:
- the fully qualified state store name.
-
init
void init(StateStoreContext ctx)
Initialize the state store.- 参数:
ctx-
-
close
void close()
- 指定者:
close在接口中java.lang.AutoCloseable
-
-