Package com.dslplatform.client

Examples of com.dslplatform.client.StandardProxy


     *
     * @return  future value of the resulting sequence
     */
    public <TResult> java.util.List<TResult> analyze(final Class<TResult> clazz)
            throws java.io.IOException {
        final StandardProxy proxy = locator.resolve(StandardProxy.class);
        try {
            return specification == null
                    ? proxy.olapCube(clazz, cubeName, dimensions, facts, order)
                            .get()
                    : proxy.olapCube(clazz, cubeName, specification,
                            dimensions, facts, order).get();
        } catch (final InterruptedException e) {
            throw new java.io.IOException(e);
        } catch (final java.util.concurrent.ExecutionException e) {
            throw new java.io.IOException(e);
View Full Code Here


     * by some of this domain objects properties.
     *
     * @return  future value of the resulting sequence
     */
    public <TResult> java.util.List<TResult> analyze( final Class<TResult> clazz) throws java.io.IOException {
        final StandardProxy proxy = locator.resolve(StandardProxy.class);
        try {
            return specification == null
                ? proxy.olapCube(clazz, cubeName, dimensions, facts, order).get()
                : proxy.olapCube(clazz, cubeName, specification, dimensions, facts, order).get();
        } catch (final InterruptedException e) {
            throw new java.io.IOException(e);
        } catch (final java.util.concurrent.ExecutionException e) {
            throw new java.io.IOException(e);
        }
View Full Code Here

TOP

Related Classes of com.dslplatform.client.StandardProxy

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.