Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -740,6 +740,12 @@ message Elements {
bool is_last = 4;
}

// Element metadata passed as part of WindowedValue to make WindowedValue
// extensible and backward compatible
message ElementMetadata {
// empty message - add drain, kind, tracing metadata in the future
}

// Represent the encoded user timer for a given instruction, transform and
// timer id.
message Timers {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1677,6 +1677,10 @@ message StandardProtocols {
// Indicates whether the SDK supports ordered list state.
ORDERED_LIST_STATE = 10
[(beam_urn) = "beam:protocol:ordered_list_state:v1"];

// Indicates support for reading, writing and propagating Element's metadata
ELEMENT_METADATA = 11
[(beam_urn) = "beam:protocol:element_metadata:v1"];
}
}

Expand Down
Loading