3940414243444546474849
public void onCompleted() { if (producer != null) { try { ServiceHelper.stopService(producer); } catch (Exception e) { throw new RuntimeCamelRxException(e); } finally { producer = null; } } }
6465666768697071
protected void send(Exchange exchange) { try { producer.process(exchange); } catch (Exception e) { throw new RuntimeCamelRxException(e); } }
4041424344454647484950
public void onCompleted() { if (producer != null) { try { producer.stop(); } catch (Exception e) { throw new RuntimeCamelRxException(e); } finally { producer = null; } } }
6364656667686970
3839404142434445464748
6162636465666768