mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-10 17:09:56 +00:00
9 lines
149 B
Go
9 lines
149 B
Go
package core
|
|
|
|
// publisher is an entity that can publish a stream.
|
|
type publisher interface {
|
|
source
|
|
close()
|
|
onPublisherAccepted(tracksLen int)
|
|
}
|