mirror of
https://github.com/bluenviron/mediamtx.git
synced 2026-01-09 20:02:01 -08:00
8 lines
161 B
Go
8 lines
161 B
Go
package core
|
|
|
|
// publisher is an entity that can publish a stream dynamically.
|
|
type publisher interface {
|
|
source
|
|
close()
|
|
onPublisherAccepted(tracksLen int)
|
|
}
|