You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package databus |
|
|
|
// Message Data. |
|
type Message struct { |
|
Key string `json:"key"` |
|
Value string `json:"value"` |
|
Topic string `json:"topic"` |
|
Partition int32 `json:"partition"` |
|
Offset int64 `json:"offset"` |
|
Timestamp int64 `json:"timestamp"` |
|
}
|
|
|