* Sends events on the given {@link Observable} to the given camel endpoint
*/
@SuppressWarnings("unchecked")
public <T> void sendTo(Observable<T> observable, Endpoint endpoint) {
try {
ObserverSender observer = new ObserverSender(endpoint);
observable.subscribe(observer);
} catch (Exception e) {
throw new RuntimeCamelRxException(e);
}
}