You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dotnet-mysql-replication is a C# Implementation of MySQL replication protocol client. This allows you to receive events like insert, update, delete with their data and raw SQL queries from MySQL.
7
+
A C# Implementation of MySQL replication protocol client
8
+
9
+
This library allows you to receive events like insert, update, delete with their data and raw SQL queries from MySQL.
8
10
9
11
## Features
10
12
@@ -21,6 +23,8 @@ dotnet-mysql-replication is a C# Implementation of MySQL replication protocol cl
21
23
- Checksum verification support
22
24
- Built-in support for MySQL binary format parsing
23
25
- Async/await first design
26
+
- Track and save binary log position
27
+
- Start replication from a specific binary log position
24
28
25
29
## Requirements
26
30
@@ -67,6 +71,79 @@ client.StartReceive();
67
71
awaitclient.CloseAsync();
68
72
```
69
73
74
+
## Using Async Stream API
75
+
76
+
You can use the modern C# async stream pattern to process MySQL events using `GetEventLogStream()`:
0 commit comments