2018-08-26 19:15:48 +08:00
|
|
|
//
|
|
|
|
// Copyright (c) 2018
|
|
|
|
// Mainflux
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//
|
|
|
|
|
2018-03-19 17:14:43 +08:00
|
|
|
package mainflux
|
|
|
|
|
|
|
|
// MessagePublisher specifies a message publishing API.
|
|
|
|
type MessagePublisher interface {
|
|
|
|
// Publishes message to the stream. A non-nil error is returned to indicate
|
|
|
|
// operation failure.
|
|
|
|
Publish(RawMessage) error
|
|
|
|
}
|