Skip to content

Commit d0ced88

Browse files
committedAug 24, 2020
fixing package names
1 parent 9a03852 commit d0ced88

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed
 

‎README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ this way when handler finishes, 3 consequtive parallel tasks will be scheduled t
8888
<br/>the string specified after name of each task will be passed as first `data` argument in their handler.
8989
<br>you can return different tasks to publish in different cases, but if the handler is requeued after the `PublishNext` result was already stored internally, the new result will be ignored for sake of consistency, since some calls could have already been published before the requeue.
9090

91-
let's see now how can we join parallel processes by introducing events.
91+
let's see now how we can join parallel processes by introducing events.
9292
<br/>by defining event triggered task (returned as 2nd parameter) that will run once all 3 events `event_1`, `event_2` and `event_3` are emitted, more preciselly the task will run exactly once when the last of them is emitted:
9393
```go
9494
func someTask(data string, events []wf.Event) ([]wf.Action, []wf.PublishTrigger, error) {
@@ -100,7 +100,7 @@ func someTask(data string, events []wf.Event) ([]wf.Action, []wf.PublishTrigger,
100100
nil
101101
}
102102
```
103-
to emit event, return it in first parameter together same as with `PublishOnEvents`
103+
to emit event, return it as first parameter together same as with `PublishOnEvents`
104104
```go
105105
func someOtherTask(taskName string, events []wf.Event) ([]wf.Action, []wf.PublishTrigger, error) {
106106
// function body
@@ -117,22 +117,24 @@ func someOtherTask(taskName string, events []wf.Event) ([]wf.Action, []wf.Publis
117117
), nil, nil
118118
}
119119
```
120-
once the joining task is run, it will receive string value (under `data`) specified right after task name in `PublishOnEvents`,
120+
once the joining task runs, it will receive string value (under `data`) specified right after task name in `PublishOnEvents`,
121121
and array of events (in our case of length 3) as second argument, each containing name of event and data passed right after that event name in `EmitEvents`:
122122
```go
123123
func someTask(data string, events []wf.Event) ([]wf.Action, []wf.PublishTrigger, error) {
124124
// function body
125125
return nil, nil, nil
126126
}
127127
```
128-
in order to run task triggered by events, make sure that the last of the events is emitted in one of the subsequent tasks, it doesnt have to be in the tasks called directly after, but can also be emitted many subsequent tasks later.
128+
in order to run task triggered by events, make sure that the last of the events is emitted in one of the subsequent tasks, it doesnt have to be directly after, but can also be emitted many steps later.
129129

130130
note on events: tasks are only tiggered by events emitted by task calls that can be traced back to same publish handler call as the task call that defined `PublishOnEvents`, meaning emitting event by calling another `wfInstance.Publish` won't trigger task in current one, this is because it would be hard to scale tasks globally between all workflow sessions, for this reason names of events can be static, next `wfInstance.Publish` will ignore all events called in previous publish handler calls.
131-
<br/>Events do transcend microservice queues though, if you define a trigger and then call task from different microservice that emits triggering event few steps later, it will still trigger the task.
131+
<br/>Events do transcend microservice queues though, if you define a trigger and then call task of different microservice that emits triggering event few steps later, it will still trigger the task.
132132

133133
in order to call task of other microservice that listens to different queue, provide its queue name before the dot as prefix:
134134
```go
135-
wfInstance.Publish("other_service_queue.task1", "some data")
135+
func someTask(data string, events []wf.Event) ([]wf.Action, []wf.PublishTrigger, error) {
136+
return wf.PublishNext("other_service_queue.task1", "some data"), nil, nil
137+
}
136138
```
137139
this way handler of `task1` of microservice that listens to queue `other_service_queue` will be called:
138140
```go

‎go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module go-pubsub-workflow
1+
module github.com/markshapiro/go-pubsub-workflow
22

33
go 1.13
44

‎go.sum

+4
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:x
1010
github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs=
1111
github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w=
1212
github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0=
13+
github.com/golang/protobuf v1.4.2 h1:+Z5KGCizgyZCbGh1KZqA0fcLLkwbsjIzS4aV2v7wJX0=
1314
github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
1415
github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
1516
github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
17+
github.com/google/go-cmp v0.4.0 h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4=
1618
github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
1719
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
1820
github.com/nxadm/tail v1.4.4 h1:DQuhQpB1tVlglWS2hLQ5OV6B5r8aGxSrPc5Qo6uTN78=
@@ -67,8 +69,10 @@ google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ
6769
google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=
6870
google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE=
6971
google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo=
72+
google.golang.org/protobuf v1.23.0 h1:4MY060fB1DLGMB/7MBTLnwQUY6+F09GEiz6SsrNqyzM=
7073
google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
7174
gopkg.in/bsm/ratelimit.v1 v1.0.0-20160220154919-db14e161995a/go.mod h1:KF9sEfUPAXdG8Oev9e99iLGnl2uJMjc5B+4y3O7x610=
75+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
7276
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
7377
gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=
7478
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=

‎pubSubWorkflow.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"fmt"
66
"strings"
77

8-
amqpWrapper "go-pubsub-workflow/amqp"
8+
amqpWrapper "github.com/markshapiro/go-pubsub-workflow/amqp"
99

10-
redisWrapper "go-pubsub-workflow/redis"
10+
redisWrapper "github.com/markshapiro/go-pubsub-workflow/redis"
1111

1212
"github.com/go-redis/redis"
1313
"github.com/streadway/amqp"

0 commit comments

Comments
 (0)