mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 01:51:59 +00:00
Rename method
This commit is contained in:
parent
e806123856
commit
4cb862432c
@ -221,7 +221,7 @@ public:
|
||||
throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Method 'schedule' is not implemented for {} processor", getName());
|
||||
}
|
||||
|
||||
virtual void asyncJobReady() {}
|
||||
virtual void onAsyncJobReady() {}
|
||||
|
||||
/** You must call this method if 'prepare' returned ExpandPipeline.
|
||||
* This method cannot access any port, but it can create new ports for current processor.
|
||||
|
@ -104,7 +104,7 @@ void RemoteSource::work()
|
||||
ISource::work();
|
||||
}
|
||||
|
||||
void RemoteSource::asyncJobReady()
|
||||
void RemoteSource::onAsyncJobReady()
|
||||
{
|
||||
chassert(async_read);
|
||||
|
||||
|
@ -32,7 +32,7 @@ public:
|
||||
|
||||
int schedule() override { return fd; }
|
||||
|
||||
void asyncJobReady() override;
|
||||
void onAsyncJobReady() override;
|
||||
|
||||
void setStorageLimits(const std::shared_ptr<const StorageLimitsList> & storage_limits_) override;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user