Append adds a conversation event to the end of the log.
(ctx context.Context, event *proto.ConversationEvent)
| 27 | type EventLog interface { |
| 28 | // Append adds a conversation event to the end of the log. |
| 29 | Append(ctx context.Context, event *proto.ConversationEvent) (int32, error) |
| 30 | |
| 31 | // AppendExec adds an execution event to the end of the log. |
| 32 | AppendExec(ctx context.Context, event *proto.ExecutionEvent) error |
no outgoing calls