org.drools.impl.adapters.ChannelAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of knowledge-api Show documentation
Show all versions of knowledge-api Show documentation
The Drools and jBPM public API which is backwards compatible between releases.
package org.drools.impl.adapters;
import org.drools.runtime.Channel;
public class ChannelAdapter implements org.kie.api.runtime.Channel {
private final Channel delegate;
public ChannelAdapter(Channel delegate) {
this.delegate = delegate;
}
public void send(Object object) {
delegate.send(object);
}
@Override
public int hashCode() {
return delegate.hashCode();
}
@Override
public boolean equals(Object obj) {
return obj instanceof ChannelAdapter && delegate.equals(((ChannelAdapter)obj).delegate);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy