mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-07 07:20:01 +00:00
9 lines
161 B
Go
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)
|
||
|
}
|