MCPcopy Create free account
hub / github.com/akarnokd/RxJavaExtensions / just

Method just

src/main/java/hu/akarnokd/rxjava3/basetypes/Solo.java:108–111  ·  view source on GitHub ↗

Returns a Solo that signals the given item and completes. @param the value type @param item the item, not null @return the new Solo instance

(T item)

Source from the content-addressed store, hash-verified

106 * @return the new Solo instance
107 */
108 public static <T> Solo<T> just(T item) {
109 Objects.requireNonNull(item, "item is null");
110 return onAssembly(new SoloJust<>(item));
111 }
112
113 /**
114 * Returns a Solo that signals the given error to Subscribers.

Callers 15

onAssemblyMethod · 0.95
getMethod · 0.95
fromPublisherSoloMethod · 0.95
concatIterableMethod · 0.95
concatIterableErrorMethod · 0.95
concatIterableError2Method · 0.95
concatPublisherMethod · 0.95
concatPublisherErrorMethod · 0.95
concatPublisherError2Method · 0.95
concatPublisherError3Method · 0.95
concatArrayMethod · 0.95

Calls 1

onAssemblyMethod · 0.95

Tested by 15

onAssemblyMethod · 0.76
getMethod · 0.76
fromPublisherSoloMethod · 0.76
concatIterableMethod · 0.76
concatIterableErrorMethod · 0.76
concatIterableError2Method · 0.76
concatPublisherMethod · 0.76
concatPublisherErrorMethod · 0.76
concatPublisherError2Method · 0.76
concatPublisherError3Method · 0.76
concatArrayMethod · 0.76