2021-07-31 18:46:06 +00:00
|
|
|
package core
|
|
|
|
|
2022-04-09 11:16:59 +00:00
|
|
|
// publisher is an entity that can publish a stream.
|
2021-07-31 18:46:06 +00:00
|
|
|
type publisher interface {
|
|
|
|
source
|
2021-10-27 19:01:00 +00:00
|
|
|
close()
|
|
|
|
onPublisherAccepted(tracksLen int)
|
2021-07-31 18:46:06 +00:00
|
|
|
}
|