From c4f30210ac27adb5792ed2cc149e13392309234a Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Mon, 27 Mar 2023 15:57:53 -0700 Subject: [PATCH] Add comment to explain what this service does --- core/transcoder/fileWriterReceiverService.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/transcoder/fileWriterReceiverService.go b/core/transcoder/fileWriterReceiverService.go index 29722865a..08c1427cf 100644 --- a/core/transcoder/fileWriterReceiverService.go +++ b/core/transcoder/fileWriterReceiverService.go @@ -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 }