Module slack_bolt.context.assistant.thread_context_store.store

Classes

class AssistantThreadContextStore
Expand source code
class AssistantThreadContextStore:
    def save(self, *, channel_id: str, thread_ts: str, context: Dict[str, str]) -> None:
        raise NotImplementedError()

    def find(self, *, channel_id: str, thread_ts: str) -> Optional[AssistantThreadContext]:
        raise NotImplementedError()

Subclasses

Methods

def find(self, *, channel_id: str, thread_ts: str) ‑> AssistantThreadContext | None
Expand source code
def find(self, *, channel_id: str, thread_ts: str) -> Optional[AssistantThreadContext]:
    raise NotImplementedError()
def save(self, *, channel_id: str, thread_ts: str, context: Dict[str, str]) ‑> None
Expand source code
def save(self, *, channel_id: str, thread_ts: str, context: Dict[str, str]) -> None:
    raise NotImplementedError()