Skip to content

Commit

Permalink
Rename EmitWithHeadersSync to EmitSyncWithHeaders
Browse files Browse the repository at this point in the history
  • Loading branch information
adw1n committed Sep 21, 2020
1 parent c3e4062 commit 9127240
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions emitter.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ func (e *Emitter) Emit(key string, msg interface{}) (*Promise, error) {
return e.EmitWithHeaders(key, msg, nil)
}

// EmitWithHeadersSync sends a message with the given headers to passed topic and key.
func (e *Emitter) EmitWithHeadersSync(key string, msg interface{}, headers map[string][]byte) error {
// EmitSyncWithHeaders sends a message with the given headers to passed topic and key.
func (e *Emitter) EmitSyncWithHeaders(key string, msg interface{}, headers map[string][]byte) error {
var (
err error
promise *Promise
Expand All @@ -111,7 +111,7 @@ func (e *Emitter) EmitWithHeadersSync(key string, msg interface{}, headers map[s

// EmitSync sends a message to passed topic and key.
func (e *Emitter) EmitSync(key string, msg interface{}) error {
return e.EmitWithHeadersSync(key, msg, nil)
return e.EmitSyncWithHeaders(key, msg, nil)
}

// Finish waits until the emitter is finished producing all pending messages.
Expand Down

0 comments on commit 9127240

Please sign in to comment.