kinesis-consumer/record.go

8 lines
154 B
Go
Raw Normal View History

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