Skip to content

Commit 450bc0c

Browse files
committed
Update README.md
1 parent 86591cf commit 450bc0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Task::isDelayed()
9898
```
9999

100100

101-
#### Producer API
101+
### Producer API
102102

103103
As you've already seen, to insert a task into a queue you need to call `put()` method, which accepts
104104
two arguments: the data you want to process and optional array of task options, which this particular
@@ -114,7 +114,7 @@ $queue->put('baz', ['ttr' => 10, 'pri' => 42]);
114114
> See the full list of available options [here](https://github.com/tarantool/queue#producer-api).
115115
116116

117-
#### Consumer API
117+
### Consumer API
118118

119119
To reserve a task for execution, call `take()` method. It accepts an optional `timeout` parameter.
120120
If a timeout value is supplied the call will wait `timeout` seconds until a `READY` task appears in the queue.

0 commit comments

Comments
 (0)