Package org.apache.marmotta.commons.sesame.transactions.api

Examples of org.apache.marmotta.commons.sesame.transactions.api.TransactionalSail


                // the CDI events should be triggered once all internal events have been handled, so register the transaction listener last
                tsail.addTransactionListener(new LMFTransactionEventProxy());


                // wrap all stackable transactional sails
                TransactionalSail transactionalSail = tsail;
                for(TransactionalSailProvider provider : transactionalSailProviders) {
                    if(provider.isEnabled()) {
                        log.info("- transaction plugin: {}",provider.getName());
                        transactionalSail = provider.createSail(transactionalSail);
                    } else {
View Full Code Here

TOP

Related Classes of org.apache.marmotta.commons.sesame.transactions.api.TransactionalSail

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.