Module slack_bolt.context.save_thread_context.save_thread_context

Classes

class SaveThreadContext (thread_context_store: AssistantThreadContextStore, channel_id: str, thread_ts: str)
Expand source code
class SaveThreadContext:
    thread_context_store: AssistantThreadContextStore
    channel_id: str
    thread_ts: str

    def __init__(
        self,
        thread_context_store: AssistantThreadContextStore,
        channel_id: str,
        thread_ts: str,
    ):
        self.thread_context_store = thread_context_store
        self.channel_id = channel_id
        self.thread_ts = thread_ts

    def __call__(self, new_context: Dict[str, str]) -> None:
        self.thread_context_store.save(
            channel_id=self.channel_id,
            thread_ts=self.thread_ts,
            context=new_context,
        )

Class variables

var channel_id : str
var thread_context_storeAssistantThreadContextStore
var thread_ts : str