Add line-break after exported fields
Match the Golang std library style of adding line-breaks after exported fields. http://golang.org/src/pkg/sync/cond.go?s=609:772#L12
This commit is contained in:
parent
5095681ad0
commit
59f488e6c7
2 changed files with 4 additions and 2 deletions
|
|
@ -5,6 +5,7 @@ package connector
|
||||||
// decides whether a record will be added to the buffer to be emitted.
|
// decides whether a record will be added to the buffer to be emitted.
|
||||||
type RecordBuffer struct {
|
type RecordBuffer struct {
|
||||||
NumRecordsToBuffer int
|
NumRecordsToBuffer int
|
||||||
|
|
||||||
firstSequenceNumber string
|
firstSequenceNumber string
|
||||||
lastSequenceNumber string
|
lastSequenceNumber string
|
||||||
recordsInBuffer []Record
|
recordsInBuffer []Record
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@ import (
|
||||||
type RedisCheckpoint struct {
|
type RedisCheckpoint struct {
|
||||||
AppName string
|
AppName string
|
||||||
StreamName string
|
StreamName string
|
||||||
|
|
||||||
client redis.Client
|
client redis.Client
|
||||||
sequenceNumber string
|
sequenceNumber string
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue