We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b69516 commit 13c20d4Copy full SHA for 13c20d4
readme.md
@@ -81,7 +81,10 @@ client.connect();
81
```
82
83
> By default, BinaryLogClient starts from the current (at the time of connect) master binlog position. If you wish to
84
-kick off from a specific filename or position, use client.setBinlogFilename(...) + client.setBinlogPosition(...).
+kick off from a specific filename or position, use `client.setBinlogFilename(filename)` + `client.setBinlogPosition(position)`.
85
+
86
+> `client.connect()` is blocking (meaning that client will listen for events in the current thread).
87
+`client.connect(timeout)`, on the other hand, spawns a separate thread.
88
89
### Controlling event deserialization
90
0 commit comments