kinesis-consumer/record.go
Harlow Ward b98adcf659 Rename Model to Record
To match the DSL of the Kinesis library rename the Model interface to
Record.
2014-11-15 15:54:54 -08:00

7 lines
154 B
Go

package connector
// Used to store the data being sent through the Kinesis stream
type Record interface {
ToDelimitedString() string
ToJson() []byte
}