Examples of push()


Examples of org.apache.derby.iapi.services.compiler.MethodBuilder.push()

         ! cb.statementNumHitLimit(1))
      {


        cb.getField(field); // instance
        cb.push(index + 1); // first arg;

        rc.generateExpression(acb, cb);
        cb.cast(ClassName.DataValueDescriptor); // second arg
        cb.callMethod(VMOpcode.INVOKEINTERFACE, ClassName.Row, "setColumn", "void", 2);
        continue;

Examples of org.apache.directory.server.core.invocation.InvocationStack.push()

    private void push( OperationContext opContext )
    {
        // TODO - need to remove Context caller and PartitionNexusProxy from Invocations
        InvocationStack stack = InvocationStack.getInstance();
        stack.push( opContext );
    }
}

Examples of org.apache.geronimo.datastore.impl.remote.messaging.HeaderOutInterceptor.push()

                    getName(),
                    new HeaderOutInterceptor(
                        MsgHeaderConstants.DEST_NODES,
                        srcNode,
                        out)));
        reqOut.push(msg);
    }
   
   
    /**
     * Registers a GFile.

Examples of org.apache.geronimo.datastore.impl.remote.messaging.MsgOutInterceptor.push()

                    getName(),
                    new HeaderOutInterceptor(
                        MsgHeaderConstants.DEST_NODES,
                        srcNode,
                        out)));
        reqOut.push(msg);
    }
   
   
    /**
     * Registers a GFile.

Examples of org.apache.geronimo.messaging.interceptors.MsgOutInterceptor.push()

                   
                    // Inserts the computed path and the new dests.
                    header2.addHeader(MsgHeaderConstants.DEST_NODE_PATH, NodeInfo.pop(path));
                    header2.addHeader(MsgHeaderConstants.DEST_NODES, target);
                }
                out.push(msg2);
            }
        }
       
        /**
         * If the topology version is not set, then the Msg is sent in the

Examples of org.apache.geronimo.network.protocol.control.ControlClientProtocolStack.push()

            sp.setTimeout(1000 * 1000); //todo reset to 10s
            sp.setInterface(new InetSocketAddress(ssa.getConnectURI().getHost(), 0));
            sp.setAddress(new InetSocketAddress(ssa.getConnectURI().getHost(), ssa.getConnectURI().getPort()));
            sp.setSelectorManager(sm);

            clientStack.push(sp);

            ControlClientProtocol ccp = new ControlClientProtocol();
            ccp.setTimeout(1000 * 1000); //todo set to 10s

            clientStack.push(ccp);

Examples of org.apache.geronimo.network.protocol.control.ControlServerProtocolStack.push()

            SocketProtocol spt = new SocketProtocol();
            spt.setTimeout(10 * 1000);
            spt.setSelectorManager(sm);

            templateStack.push(spt);

            ControlServerProtocol csp = new ControlServerProtocol();
            csp.setTimeout(1 * 1000);
            csp.setThreadPool(tp);
            csp.setClockPool(cp);

Examples of org.apache.geronimo.network.protocol.control.ControlServerProtocolWaiter.push()

            ControlServerProtocolWaiter waiter = new ControlServerProtocolWaiter();

            SubjectCarryingServerProtocol scp = new SubjectCarryingServerProtocol();

            waiter.push(scp);

            waiter.push(new CountingProtocol());

            TestProtocol test = new TestProtocol();
            test.setValue("SimpleTest");

Examples of org.apache.hivemind.impl.InterceptorStackImpl.push()

        Class interceptorClass = f.constructInterceptorClass(is, Collections.EMPTY_LIST);
        Constructor c = interceptorClass.getConstructors()[0];

        Object interceptor =  c.newInstance(new Object[] { is.getServiceLog(), is.peek() });
        is.push(interceptor);

        Runnable ri = (Runnable) is.peek();

        verifyControls();

Examples of org.apache.hivemind.schema.SchemaProcessor.push()

        mockProcessor.getContributingModule();

        control.setReturnValue(newMock(Module.class));

        mockProcessor.push("flintstone");
        mockProcessor.pop();

        control.setReturnValue("flintstone");

        replayControls();
TOP
Copyright © 2018 www.massapi.com. 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.