Rename method

This commit is contained in:
Igor Nikonov 2024-07-19 09:34:20 +00:00
parent e806123856
commit 4cb862432c
3 changed files with 3 additions and 3 deletions

View File

@ -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.

View File

@ -104,7 +104,7 @@ void RemoteSource::work()
ISource::work();
}
void RemoteSource::asyncJobReady()
void RemoteSource::onAsyncJobReady()
{
chassert(async_read);

View File

@ -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;