Interface Processor.Iso<V>
-
- Type Parameters:
V
- the input and output type
- All Superinterfaces:
Processor<V,V>
,Publisher<V>
,Subscriber<V>
- All Known Subinterfaces:
Processor.TransactionalIso<V>
public static interface Processor.Iso<V> extends Processor<V,V>
A Processor that has the same type for inputs and outputs.- Since:
- 4.0.0
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.spongepowered.configurate.reactive.Processor
Processor.Iso<V>, Processor.Transactional<I,O>, Processor.TransactionalIso<V>
-
Nested classes/interfaces inherited from interface org.spongepowered.configurate.reactive.Publisher
Publisher.Cached<V>
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
inject(V element)
Submit an element of the observed type, bypassing any mapping this Processor may do.-
Methods inherited from interface org.spongepowered.configurate.reactive.Processor
closeIfUnsubscribed, fallbackHandler, map
-
Methods inherited from interface org.spongepowered.configurate.reactive.Publisher
cache, cache, executor, hasSubscribers, subscribe
-
Methods inherited from interface org.spongepowered.configurate.reactive.Subscriber
onClose, onError, submit
-
-
-
-
Method Detail
-
inject
default void inject(V element)
Description copied from interface:Processor
Submit an element of the observed type, bypassing any mapping this Processor may do. If the input type of this processor equals the output type, this is equivalent toSubscriber.submit(Object)
-
-