182183184185186187188189190191192
} } txn.commit(); } catch (final Throwable e) { log.error("Cannot process open socket", e); txn.rollback(); } } finally { end(); } } else {
217218219220221222223224225226227
listener.onData(data); } txn.commit(); } catch (final Throwable e) { log.error("Cannot process open socket", e); txn.rollback(); } } finally { end(); } } else {
242243244245246247248249250251252
try { doClose(); txn.commit(); } catch (final Throwable e) { log.error("Cannot process open socket", e); txn.rollback(); } } finally { end(); } }
260261262263264265266267268269270
try { doOpen(); txn.commit(); } catch (final Throwable e) { log.error("Cannot process open socket", e); txn.rollback(); } } finally { end(); } }
293294295296297298299300301302303
try { runnable.run(); txn.commit(); } catch (final Throwable e) { log.error("Cannot process commmand", e); txn.rollback(); return false; } } finally { end(); }
105106107108109110111112113114115
entryPoint.restart(uiContext); } txn.commit(); } catch (final Throwable e) { log.error("Cannot send instructions to the browser, Session ID #" + session.getId(), e); txn.rollback(); } } finally { UIContext.remove(); } }
144145146147148149150151152153154
} txn.commit(); } catch (final Throwable e) { log.error("Cannot process client instruction", e); txn.rollback(); } } finally { UIContext.remove(); uiContext.release(); }