Waits in a blocking fashion until the current Maybe signals a success value (which is returned), null if completed or an exception (which is propagated). <img width="640" height="285" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Maybe.blockingGet.png" alt
()
| 2854 | * @return the success value |
| 2855 | */ |
| 2856 | @CheckReturnValue |
| 2857 | @SchedulerSupport(SchedulerSupport.NONE) |
| 2858 | @Nullable |
| 2859 | public final T blockingGet() { |
| 2860 | BlockingMultiObserver<T> observer = new BlockingMultiObserver<>(); |
| 2861 | subscribe(observer); |
| 2862 | return observer.blockingGet(); |
| 2863 | } |
| 2864 | |
| 2865 | /** |
| 2866 | * Waits in a blocking fashion until the current {@code Maybe} signals a success value (which is returned), |
no test coverage detected