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
9 changes: 9 additions & 0 deletions dispatch/sdk/v1/function.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import "dispatch/sdk/v1/exit.proto";
import "dispatch/sdk/v1/poll.proto";
import "dispatch/sdk/v1/status.proto";
import "google/protobuf/any.proto";
import "google/protobuf/timestamp.proto";

// The FunctionService service is used to interface with programmable endpoints
// exposing remote functions.
Expand Down Expand Up @@ -62,6 +63,14 @@ message RunRequest {
// hierarchy tree is created. This field carries the identifier of the
// root function call in the tree.
string root_dispatch_id = 6;

// Time at which the function call was created.
//
// Note that if the function tail-calls, the timestamp is not reset.
google.protobuf.Timestamp creation_time = 7;

// Time at which the function call expires.
google.protobuf.Timestamp expiration_time = 8;
}

// RunResponse is returned by calls to the Run method of FunctionService.
Expand Down