mediamtx/internal/core/publisher.go
2021-10-27 21:01:00 +02:00

9 lines
161 B
Go

package core
// publisher is an entity that can publish a stream dynamically.
type publisher interface {
source
close()
onPublisherAccepted(tracksLen int)
}