diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-12 17:18:59 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-12 17:18:59 +0100 |
commit | d74044f6341e93861d820f21b6d37a2f98e1ef60 (patch) | |
tree | 2e25ede4dd29913b5e526cce3b790d627a230205 /lib/public | |
parent | e74f4646622a6f667228d52be1dde091bb0b2757 (diff) | |
download | nextcloud-server-d74044f6341e93861d820f21b6d37a2f98e1ef60.tar.gz nextcloud-server-d74044f6341e93861d820f21b6d37a2f98e1ef60.zip |
Fix API breakage by using a new method instead
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/BackgroundJob/IJobList.php | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/lib/public/BackgroundJob/IJobList.php b/lib/public/BackgroundJob/IJobList.php index 0b32607feb6..e8d0380e604 100644 --- a/lib/public/BackgroundJob/IJobList.php +++ b/lib/public/BackgroundJob/IJobList.php @@ -79,10 +79,20 @@ interface IJobList { * Get jobs matching the search * * @param IJob|class-string<IJob>|null $job - * @return iterable<IJob> + * @return array<IJob> * @since 25.0.0 + * @deprecated 26.0.0 Use getJobsIterator instead to avoid duplicated job objects + */ + public function getJobs($job, ?int $limit, int $offset): array; + + /** + * Get jobs matching the search + * + * @param IJob|class-string<IJob>|null $job + * @return iterable<IJob> + * @since 26.0.0 */ - public function getJobs($job, ?int $limit, int $offset): iterable; + public function getJobsIterator($job, ?int $limit, int $offset): iterable; /** * get the next job in the list |