Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion doc/design/milestone-0.0.2/action-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ This method also aligns with the original goal of ensuring that all actions of t
```Go
// Handle contains the business logic for an handling an Event
// It uses SDK Actions and Queries to reconcile the state
func Handle(ctx context.Context, event sdkTypes.Event)
// If an error is returned the Event would be requeued and sent to the Handler again
func Handle(ctx context.Context, event sdkTypes.Event) error
```

### Create Update Delete:
Expand Down