Module slack_bolt.context.assistant.thread_context_store.async_store
Classes
class AsyncAssistantThreadContextStore-
Expand source code
class AsyncAssistantThreadContextStore: async def save(self, *, channel_id: str, thread_ts: str, context: Dict[str, str]) -> None: raise NotImplementedError() async def find(self, *, channel_id: str, thread_ts: str) -> Optional[AssistantThreadContext]: raise NotImplementedError()Subclasses
Methods
async def find(self, *, channel_id: str, thread_ts: str) ‑> AssistantThreadContext | None-
Expand source code
async def find(self, *, channel_id: str, thread_ts: str) -> Optional[AssistantThreadContext]: raise NotImplementedError() async def save(self, *, channel_id: str, thread_ts: str, context: Dict[str, str]) ‑> None-
Expand source code
async def save(self, *, channel_id: str, thread_ts: str, context: Dict[str, str]) -> None: raise NotImplementedError()