2014-07-25 06:03:41 +00:00
|
|
|
package connector
|
|
|
|
|
|
2014-11-15 23:54:54 +00:00
|
|
|
// Transformer is used to transform data (byte array) to a Record for
|
2014-07-25 06:03:41 +00:00
|
|
|
// processing in the application.
|
|
|
|
|
type Transformer interface {
|
2014-11-16 01:00:37 +00:00
|
|
|
FromRecord(r interface{}) []byte
|
2014-11-16 01:19:08 +00:00
|
|
|
ToRecord(data []byte) interface{}
|
2014-07-25 06:03:41 +00:00
|
|
|
}
|