-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(core): specify event listener API #14735
Changes from 4 commits
cf90c23
82e6f5f
14a8225
a4b69fd
25bb942
d8669fd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,32 @@ | ||||||||||||||||
package appmodule | ||||||||||||||||
|
||||||||||||||||
import ( | ||||||||||||||||
"context" | ||||||||||||||||
|
||||||||||||||||
"google.golang.org/protobuf/runtime/protoiface" | ||||||||||||||||
) | ||||||||||||||||
|
||||||||||||||||
// HasEventListeners is the extension interface that modules should implement to register | ||||||||||||||||
// event listeners. | ||||||||||||||||
type HasEventListeners interface { | ||||||||||||||||
AppModule | ||||||||||||||||
|
||||||||||||||||
// RegisterEventListeners registers the module's events listeners. | ||||||||||||||||
RegisterEventListeners(registrar *EventListenerRegistrar) | ||||||||||||||||
} | ||||||||||||||||
|
||||||||||||||||
// EventListenerRegistrar allows registering event listeners. | ||||||||||||||||
type EventListenerRegistrar struct { | ||||||||||||||||
listeners []any | ||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||
} | ||||||||||||||||
|
||||||||||||||||
// GetListeners gets the event listeners that have been registered | ||||||||||||||||
func (e *EventListenerRegistrar) GetListeners() []any { | ||||||||||||||||
return e.listeners | ||||||||||||||||
} | ||||||||||||||||
alexanderbez marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||
|
||||||||||||||||
// RegisterEventListener registers an event listener for event type E. If a non-nil error is returned by the listener, | ||||||||||||||||
// it will cause the process which emitted the event to fail. | ||||||||||||||||
func RegisterEventListener[E protoiface.MessageV1](registrar *EventListenerRegistrar, listener func(context.Context, E) error) { | ||||||||||||||||
registrar.listeners = append(registrar.listeners, listener) | ||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why not this instead of using
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because the caller will be doing a type check anyway. I think this would just add extra type checking. Also in core we don't want to add any implementation details. This should be defer all those details to runtime |
||||||||||||||||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package appmodule | ||
|
||
import ( | ||
"context" | ||
"reflect" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
"google.golang.org/protobuf/types/known/timestamppb" | ||
) | ||
|
||
func TestEventListenerRegistrar(t *testing.T) { | ||
registrar := &EventListenerRegistrar{} | ||
RegisterEventListener(registrar, func(ctx context.Context, dummy *timestamppb.Timestamp) error { return nil }) | ||
require.Len(t, registrar.listeners, 1) | ||
require.Equal(t, reflect.Func, reflect.TypeOf(registrar.listeners[0]).Kind()) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a question on why to expose
EventListenerRegistrar
in core, shouldn't that be runtime?The core interface could simply be:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's just a more ergonomic API this way I think
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
EventListenerRegistrar is just a dummy struct to make using generics easy