Package net.sf.agentopia.platform

Examples of net.sf.agentopia.platform.IAgentopiaConnection.readInt()


     * @param agent The agent to jump start.
     * @throws IOException
     */
    public void jumpStart(IAgentopiaAgent agent) throws IOException {
        IAgentopiaConnection comm = createDirectConnection(this.hostId, AgentopiaConstants.HEADER_AGENT);
        int intFlag = comm.readInt();
        if (AgentopiaConstants.HEADER_AGENT != intFlag) {
            throw new IOException("HEADER_AGENT flag expected as affirmation.");
        }
        comm.transferMe(agent);
        comm.shutDown();
View Full Code Here

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.