com.google.ipc.invalidation.ticl.android2.AndroidInvalidationClientImpl.IntentForwardingListener Java Examples
The following examples show how to use
com.google.ipc.invalidation.ticl.android2.AndroidInvalidationClientImpl.IntentForwardingListener.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TiclService.java From 365browser with Apache License 2.0 | 4 votes |
/** Informs the listener of a non-retryable {@code error}. */ private void informListenerOfPermanentError(final String error) { ErrorInfo errorInfo = ErrorInfo.newInstance(0, false, error, null); Intent errorIntent = ProtocolIntents.ListenerUpcalls.newErrorIntent(errorInfo); IntentForwardingListener.issueIntent(this, errorIntent); }
Example #2
Source File: TiclService.java From android-chromium with BSD 2-Clause "Simplified" License | 4 votes |
/** Informs the listener of a non-retryable {@code error}. */ private void informListenerOfPermanentError(final String error) { ErrorInfo errorInfo = ErrorInfo.newInstance(0, false, error, null); Intent errorIntent = ProtocolIntents.ListenerUpcalls.newErrorIntent(errorInfo); IntentForwardingListener.issueIntent(this, errorIntent); }
Example #3
Source File: TiclService.java From android-chromium with BSD 2-Clause "Simplified" License | 4 votes |
/** Informs the listener of a non-retryable {@code error}. */ private void informListenerOfPermanentError(final String error) { ErrorInfo errorInfo = ErrorInfo.newInstance(0, false, error, null); Intent errorIntent = ProtocolIntents.ListenerUpcalls.newErrorIntent(errorInfo); IntentForwardingListener.issueIntent(this, errorIntent); }