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) ‑> Optional[AssistantThreadContext]
async def save(self, *, channel_id: str, thread_ts: str, context: Dict[str, str]) ‑> None