-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #70 from Andrewerr/4-use-notify_push
WIP: Implement websocket in addition to polling
- Loading branch information
Showing
28 changed files
with
759 additions
and
209 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
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
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
16 changes: 16 additions & 0 deletions
16
...n/java/com/polar/nextcloudservices/API/websocket/INotificationWebsocketEventListener.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,16 @@ | ||
package com.polar.nextcloudservices.API.websocket; | ||
|
||
import com.polar.nextcloudservices.Services.INotificationListener; | ||
|
||
public interface INotificationWebsocketEventListener extends INotificationListener { | ||
/** | ||
* Called whenever websocket is disconnected | ||
* @param isError whether disconnect resulted from error | ||
*/ | ||
void onWebsocketDisconnected(boolean isError); | ||
|
||
/** | ||
* Called whenever websocket connection is established | ||
*/ | ||
void onWebsocketConnected(); | ||
} |
Oops, something went wrong.