Package com.buschmais.xo.api

Examples of com.buschmais.xo.api.XOTransaction


            iterator = query.execute(queryAnnotation, effectiveParameters);
        } else {
            throw new XOException("Expression type is not supported: " + expression);
        }
        SortedSet<Class<?>> resultTypes = getResultTypes();
        XOTransaction xoTransaction = sessionContext.getXOTransaction();
        return new QueryResultIterableImpl(sessionContext, xoTransaction != null ? new TransactionalResultIterator<>(iterator, xoTransaction) : iterator, resultTypes);
    }
View Full Code Here

TOP

Related Classes of com.buschmais.xo.api.XOTransaction

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.