Browse Source

Add comment to explain what this service does

0.1.1
Gabe Kangas 2 years ago
parent
commit
c4f30210ac
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
  1. 3
      core/transcoder/fileWriterReceiverService.go

3
core/transcoder/fileWriterReceiverService.go

@ -21,6 +21,9 @@ type FileWriterReceiverServiceCallback interface { @@ -21,6 +21,9 @@ type FileWriterReceiverServiceCallback interface {
}
// FileWriterReceiverService accepts transcoder responses via HTTP and fires the callbacks.
// It is intended to be the middleman between the transcoder and the storage provider and allows
// the transcoder process to be completely isolated and even run remotely in the future, as long
// as it can send HTTP requests to this service with the results.
type FileWriterReceiverService struct {
callbacks FileWriterReceiverServiceCallback
}

Loading…
Cancel
Save