SQLiteEventLog is a durable EventLog that persists events in a SQLite database. It is safe for concurrent use.
| 29 | // SQLiteEventLog is a durable EventLog that persists events in a SQLite database. |
| 30 | // It is safe for concurrent use. |
| 31 | type SQLiteEventLog struct { |
| 32 | db *sql.DB |
| 33 | } |
| 34 | |
| 35 | const sqliteBusyTimeout = 10 * time.Second |
| 36 |
nothing calls this directly
no outgoing calls
no test coverage detected