Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
p2p
go-eventbus
Commits
4afad1f6
Unverified
Commit
4afad1f6
authored
Jun 28, 2019
by
Łukasz Magiera
Committed by
GitHub
Jun 28, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #17 from libp2p/fix/with-node
nit: fix with-node
parents
d88ec38b
7b280b5c
Pipeline
#456
failed with stages
in 0 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
10 deletions
+12
-10
basic.go
basic.go
+12
-10
No files found.
basic.go
View file @
4afad1f6
...
...
@@ -51,7 +51,7 @@ func NewBus() event.Bus {
}
}
func
(
b
*
basicBus
)
withNode
(
typ
reflect
.
Type
,
cb
func
(
*
node
),
async
func
(
*
node
))
error
{
func
(
b
*
basicBus
)
withNode
(
typ
reflect
.
Type
,
cb
func
(
*
node
),
async
func
(
*
node
))
{
b
.
lk
.
Lock
()
n
,
ok
:=
b
.
nodes
[
typ
]
...
...
@@ -65,12 +65,14 @@ func (b *basicBus) withNode(typ reflect.Type, cb func(*node), async func(*node))
cb
(
n
)
if
async
==
nil
{
n
.
lk
.
Unlock
()
}
else
{
go
func
()
{
defer
n
.
lk
.
Unlock
()
async
(
n
)
}()
return
nil
}
}
func
(
b
*
basicBus
)
tryDropNode
(
typ
reflect
.
Type
)
{
...
...
@@ -168,7 +170,7 @@ func (b *basicBus) Subscribe(evtTypes interface{}, opts ...event.SubscriptionOpt
for
i
,
etyp
:=
range
types
{
typ
:=
reflect
.
TypeOf
(
etyp
)
err
=
b
.
withNode
(
typ
.
Elem
(),
func
(
n
*
node
)
{
b
.
withNode
(
typ
.
Elem
(),
func
(
n
*
node
)
{
n
.
sinks
=
append
(
n
.
sinks
,
out
.
ch
)
out
.
nodes
[
i
]
=
n
},
func
(
n
*
node
)
{
...
...
@@ -210,11 +212,11 @@ func (b *basicBus) Emitter(evtType interface{}, opts ...event.EmitterOpt) (e eve
}
typ
=
typ
.
Elem
()
err
=
b
.
withNode
(
typ
,
func
(
n
*
node
)
{
b
.
withNode
(
typ
,
func
(
n
*
node
)
{
atomic
.
AddInt32
(
&
n
.
nEmitters
,
1
)
n
.
keepLast
=
n
.
keepLast
||
settings
.
makeStateful
e
=
&
emitter
{
n
:
n
,
typ
:
typ
,
dropper
:
b
.
tryDropNode
}
},
func
(
_
*
node
)
{}
)
},
nil
)
return
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment