Skip to content

Commit 2238168

Browse files
fixed #272, fixed #271,fixed #270, fixed #269, fixed #268, fixed #267, fixed #266, fixed #257
1 parent 9bad1ba commit 2238168

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/main/java/org/woehlke/twitterwall/backend/mq/tasks/impl/TaskStartFireAndForgetImpl.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,18 @@ public Task startUpdateUrls() {
141141
return send(taskType);
142142
}
143143

144+
@Override
145+
public Task startFetchListOwner() {
146+
TaskType taskType = TaskType.FETCH_USERLIST_OWNERS;
147+
return send(taskType);
148+
}
149+
150+
@Override
151+
public Task startFetchListsForUsers() {
152+
TaskType taskType = TaskType.FETCH_LISTS_FOR_USERS;
153+
return send(taskType);
154+
}
155+
144156
private Task send(TaskType taskType){
145157
TaskSendType taskSendType = TaskSendType.FIRE_AND_FORGET;
146158
String msg = "START Task "+taskType+" via MQ by "+ taskSendType;

0 commit comments

Comments
 (0)