forked from yamblz-native/background
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
69 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
app/src/main/java/ru/yandex/yamblz/handler/DisableScrollLoadingHandler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package ru.yandex.yamblz.handler; | ||
|
||
/** | ||
* Created by aleien on 31.07.16. | ||
*/ | ||
|
||
public class DisableScrollLoadingHandler implements CriticalSectionsHandler { | ||
@Override | ||
public void startSection(int id) { | ||
|
||
} | ||
|
||
@Override | ||
public void stopSection(int id) { | ||
|
||
} | ||
|
||
@Override | ||
public void stopSections() { | ||
|
||
} | ||
|
||
@Override | ||
public void postLowPriorityTask(Task task) { | ||
|
||
} | ||
|
||
@Override | ||
public void postLowPriorityTaskDelayed(Task task, int delay) { | ||
|
||
} | ||
|
||
@Override | ||
public void removeLowPriorityTask(Task task) { | ||
|
||
} | ||
|
||
@Override | ||
public void removeLowPriorityTasks() { | ||
|
||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
app/src/main/java/ru/yandex/yamblz/handler/LoadingTask.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package ru.yandex.yamblz.handler; | ||
|
||
/** | ||
* Created by aleien on 31.07.16. | ||
*/ | ||
|
||
public class LoadingTask implements Task { | ||
@Override | ||
public void run() { | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters