mediamtx/internal/core/publisher.go

9 lines
161 B
Go
Raw Normal View History

package core
// publisher is an entity that can publish a stream dynamically.
type publisher interface {
source
2021-10-27 19:01:00 +00:00
close()
onPublisherAccepted(tracksLen int)
}