We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bad1ba commit 2238168Copy full SHA for 2238168
src/main/java/org/woehlke/twitterwall/backend/mq/tasks/impl/TaskStartFireAndForgetImpl.java
@@ -141,6 +141,18 @@ public Task startUpdateUrls() {
141
return send(taskType);
142
}
143
144
+ @Override
145
+ public Task startFetchListOwner() {
146
+ TaskType taskType = TaskType.FETCH_USERLIST_OWNERS;
147
+ return send(taskType);
148
+ }
149
+
150
151
+ public Task startFetchListsForUsers() {
152
+ TaskType taskType = TaskType.FETCH_LISTS_FOR_USERS;
153
154
155
156
private Task send(TaskType taskType){
157
TaskSendType taskSendType = TaskSendType.FIRE_AND_FORGET;
158
String msg = "START Task "+taskType+" via MQ by "+ taskSendType;
0 commit comments