feat(go): publish realtime fields stream
This commit is contained in:
@@ -73,6 +73,10 @@ func (s *blockingSink) PublishUnified(context.Context, envelope.FrameEnvelope) e
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *blockingSink) PublishFields(context.Context, envelope.FrameEnvelope) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *blockingSink) Close() error {
|
||||
s.release()
|
||||
return nil
|
||||
@@ -100,6 +104,11 @@ func (s *orderedSink) PublishUnified(context.Context, envelope.FrameEnvelope) er
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *orderedSink) PublishFields(context.Context, envelope.FrameEnvelope) error {
|
||||
s.calls = append(s.calls, "fields")
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *orderedSink) Close() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user