2024-08-01 01:01:08 -04:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2024-08-05 18:11:31 -04:00
|
|
|
"dynatron.me/x/stillbox/pkg/calls"
|
2024-08-01 01:01:08 -04:00
|
|
|
)
|
|
|
|
|
2024-08-23 15:40:10 -04:00
|
|
|
func (s *Server) Ingest(ctx context.Context, call *calls.Call) error {
|
2025-01-18 17:22:08 -05:00
|
|
|
ctx = context.WithoutCancel(ctx)
|
|
|
|
return s.sinks.EmitCall(ctx, call)
|
2024-08-01 01:01:08 -04:00
|
|
|
}
|