diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2017-11-19 13:53:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-19 13:53:13 +0100 |
commit | e585dde46c4ed9e0223925968f1634e81c15c67f (patch) | |
tree | 20009c0924d50f81c8712bbec06cfccd7cd2df09 /src/Wallabag/ImportBundle | |
parent | f6988b5aa3c468f8cb3430a190673d45c9c13782 (diff) | |
parent | c8ac32cf171b60e8e496bbaf781cbf309bd1e04c (diff) | |
download | wallabag-e585dde46c4ed9e0223925968f1634e81c15c67f.tar.gz wallabag-e585dde46c4ed9e0223925968f1634e81c15c67f.tar.zst wallabag-e585dde46c4ed9e0223925968f1634e81c15c67f.zip |
Merge pull request #3422 from wallabag/simpleue-2
Jump to Simpleue 2.0
Diffstat (limited to 'src/Wallabag/ImportBundle')
-rw-r--r-- | src/Wallabag/ImportBundle/Consumer/RedisEntryConsumer.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Wallabag/ImportBundle/Consumer/RedisEntryConsumer.php b/src/Wallabag/ImportBundle/Consumer/RedisEntryConsumer.php index 450b71ff..862d0c43 100644 --- a/src/Wallabag/ImportBundle/Consumer/RedisEntryConsumer.php +++ b/src/Wallabag/ImportBundle/Consumer/RedisEntryConsumer.php | |||
@@ -21,9 +21,26 @@ class RedisEntryConsumer extends AbstractConsumer implements Job | |||
21 | /** | 21 | /** |
22 | * Should tell if the given job will kill the worker. | 22 | * Should tell if the given job will kill the worker. |
23 | * We don't want to stop it :). | 23 | * We don't want to stop it :). |
24 | * | ||
25 | * @param string $job Content of the message (directly from Redis) | ||
26 | * | ||
27 | * @return false | ||
24 | */ | 28 | */ |
25 | public function isStopJob($job) | 29 | public function isStopJob($job) |
26 | { | 30 | { |
27 | return false; | 31 | return false; |
28 | } | 32 | } |
33 | |||
34 | /** | ||
35 | * This abstract method is only used when we use one queue for multiple job type. | ||
36 | * We don't do that, so we'll always return true. | ||
37 | * | ||
38 | * @param string $job Content of the message (directly from Redis) | ||
39 | * | ||
40 | * @return true | ||
41 | */ | ||
42 | public function isMyJob($job) | ||
43 | { | ||
44 | return true; | ||
45 | } | ||
29 | } | 46 | } |