NewBinlogEntryAt creates an empty, ready to go BinlogEntry object
(coordinates mysql.BinlogCoordinates)
| 19 | |
| 20 | // NewBinlogEntryAt creates an empty, ready to go BinlogEntry object |
| 21 | func NewBinlogEntryAt(coordinates mysql.BinlogCoordinates) *BinlogEntry { |
| 22 | binlogEntry := &BinlogEntry{ |
| 23 | Coordinates: coordinates, |
| 24 | } |
| 25 | return binlogEntry |
| 26 | } |
| 27 | |
| 28 | // String() returns a string representation of this binlog entry |
| 29 | func (ble *BinlogEntry) String() string { |
no outgoing calls
no test coverage detected
searching dependent graphs…