reactor.groovy.support.ClosureEventConsumer.groovy Maven / Gradle / Ivy
/*
* Copyright (c) 2011-2015 Pivotal Software Inc., Inc. All Rights Reserved.
*
* 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 reactor.groovy.support
import groovy.transform.CompileStatic
import reactor.bus.Bus
import reactor.bus.Event
import reactor.bus.EventBus
import reactor.core.processor.CancelException
import reactor.fn.Consumer
/**
* @author Jon Brisbin
* @author Stephane Maldini
*/
@CompileStatic
class ClosureEventConsumer implements Consumer> {
final Closure callback
final boolean eventArg
ClosureEventConsumer(Closure cl) {
callback = cl
callback.delegate = this
def argTypes = callback.parameterTypes
this.eventArg = Event.isAssignableFrom(argTypes[0])
}
void cancel() {
throw CancelException.get()
}
@Override
void accept(Event arg) {
def callback = this.callback
if (EventBus.ReplyToEvent.class.isAssignableFrom(arg.class)) {
callback = (Closure) callback.clone()
callback.delegate = new ReplyDecorator(arg.replyTo, (((EventBus.ReplyToEvent) arg).replyToObservable))
}
if (eventArg) {
callback arg
} else {
callback arg?.data
}
}
class ReplyDecorator {
final replyTo
final Bus observable
ReplyDecorator(replyTo, Bus observable) {
this.replyTo = replyTo
this.observable = observable
}
void reply() {
observable.notify(replyTo, new Event(Void))
}
void reply(data) {
observable.notify(replyTo, Event.wrap(data))
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy