-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
topsql: introduce datasink interface (#30662)
- Loading branch information
Showing
7 changed files
with
188 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Copyright 2021 PingCAP, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package reporter | ||
|
||
import "time" | ||
|
||
// DataSink collects and sends data to a target. | ||
type DataSink interface { | ||
// TrySend pushes a report data into the sink, which will later be sent to a target by the sink. A deadline can be | ||
// specified to control how late it should be sent. If the sink is kept full and cannot schedule a send within | ||
// the specified deadline, or the sink is closed, an error will be returned. | ||
TrySend(data ReportData, deadline time.Time) error | ||
|
||
// IsPaused indicates that the DataSink is not expecting to receive records for now | ||
// and may resume in the future. | ||
IsPaused() bool | ||
|
||
// IsDown indicates that the DataSink has been down and can be cleared. | ||
// Note that: once a DataSink is down, it cannot go back to be up. | ||
IsDown() bool | ||
|
||
// Close cleans up resources owned by this DataSink | ||
Close() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.