We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61509fa commit 3ff2e07Copy full SHA for 3ff2e07
src/workerd/io/worker-interface.h
@@ -132,10 +132,8 @@ class WorkerInterface: public kj::HttpService {
132
virtual uint16_t getType() = 0;
133
134
// Get event info for tracing.
135
- // Return none if this event type doesn't need tracing.
136
- virtual kj::Maybe<tracing::EventInfo> getEventInfo() const {
137
- return kj::none;
138
- }
+ // Return kj::none if this event type doesn't need tracing.
+ virtual kj::Maybe<tracing::EventInfo> getEventInfo() const = 0;
139
140
// If the CustomEvent fails before any of the other methods are called, this may be invoked
141
// to report the failure reason.
0 commit comments