mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-16 03:34:45 +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)
|
|
}
|