Package pl.net.bluesoft.rnd.processtool.hibernate

Examples of pl.net.bluesoft.rnd.processtool.hibernate.TransactionFinishedCallback


    protected void broadcastEvent(final ProcessToolContext ctx, final IEvent event) {
        eventBusManager.publish(event);
        if (substitutingUserEventBusManager != null)
            substitutingUserEventBusManager.publish(event);
        ctx.addTransactionCallback(new TransactionFinishedCallback() {
            @Override
            public void onFinished() {
                ctx.getEventBusManager().post(event);
            }
        });
View Full Code Here

TOP

Related Classes of pl.net.bluesoft.rnd.processtool.hibernate.TransactionFinishedCallback

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.