-
Notifications
You must be signed in to change notification settings - Fork 7.6k
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 #3155 from davidmoten/safe-sub-catch
SafeSubscriber - report onCompleted unsubscribe error to RxJavaPlugin
- Loading branch information
Showing
6 changed files
with
223 additions
and
66 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
src/main/java/rx/exceptions/OnCompletedFailedException.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,29 @@ | ||
/** | ||
* Copyright 2014 Netflix, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package rx.exceptions; | ||
|
||
public final class OnCompletedFailedException extends RuntimeException { | ||
|
||
private static final long serialVersionUID = 8622579378868820554L; | ||
|
||
public OnCompletedFailedException(Throwable throwable) { | ||
super(throwable); | ||
} | ||
|
||
public OnCompletedFailedException(String message, Throwable throwable) { | ||
super(message, throwable); | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
src/main/java/rx/exceptions/UnsubscribeFailedException.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,30 @@ | ||
/** | ||
* Copyright 2014 Netflix, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package rx.exceptions; | ||
|
||
public final class UnsubscribeFailedException extends RuntimeException { | ||
|
||
private static final long serialVersionUID = 4594672310593167598L; | ||
|
||
public UnsubscribeFailedException(Throwable throwable) { | ||
super(throwable); | ||
} | ||
|
||
public UnsubscribeFailedException(String message, Throwable throwable) { | ||
super(message, throwable); | ||
} | ||
|
||
} |
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,40 @@ | ||
/** | ||
* Copyright 2014 Netflix, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
package rx.internal.util; | ||
|
||
import rx.plugins.RxJavaPlugins; | ||
|
||
public final class RxJavaPluginUtils { | ||
|
||
public static void handleException(Throwable e) { | ||
try { | ||
RxJavaPlugins.getInstance().getErrorHandler().handleError(e); | ||
} catch (Throwable pluginException) { | ||
handlePluginException(pluginException); | ||
} | ||
} | ||
|
||
private static void handlePluginException(Throwable pluginException) { | ||
/* | ||
* We don't want errors from the plugin to affect normal flow. | ||
* Since the plugin should never throw this is a safety net | ||
* and will complain loudly to System.err so it gets fixed. | ||
*/ | ||
System.err.println("RxJavaErrorHandler threw an Exception. It shouldn't. => " + pluginException.getMessage()); | ||
pluginException.printStackTrace(); | ||
} | ||
|
||
} |
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
Oops, something went wrong.