mirror of
https://github.com/teacat/chaturbate-dvr.git
synced 2025-10-29 16:59:59 +00:00
11 lines
416 B
Go
11 lines
416 B
Go
package stream
|
|
|
|
type Manager interface {
|
|
ListStreams() ([]*StreamDTO, error)
|
|
AddStream(username string, resFallback ResolutionFallback, resolution, framerate, splitByFilesize, splitByDuration int, isPaused bool) error
|
|
PauseStream(username string) error
|
|
StopStream(username string) error
|
|
ResumeStream(username string) error
|
|
SubscribeStreams(chUpd chan<- *StreamUpdateDTO, chOut chan<- *StreamOutputDTO) error
|
|
}
|