Package net.sf.agentopia.platform

Examples of net.sf.agentopia.platform.IMarketPlace


        host2.getMarketPlace().getClassedObjectTransmitter().setAllowNet(true);

        // Manually startup market places.
        OS.sleep(WAIT_THREAD_LAG);
        if (!isAutomaticMarket) {
            final IMarketPlace market1 = host1.getMarketPlace();
            final IMarketPlace market2 = host2.getMarketPlace();
            market1.runStartup();
            market2.runStartup();
            market1.runTick(false);
            market2.runTick(false);
        }

        // Connect the two market places.
        host1.createSustainer(host1.getMarketPlace(), host2.getHomeId(), host1.getHomeId());
View Full Code Here


    /**
     * @return The market place of this host.
     */
    private IMarketPlace getMarketPlace() {
        final IMarketPlace marketPlace = controller.getHost().getMarketPlace();
        return marketPlace;
    }
View Full Code Here

TOP

Related Classes of net.sf.agentopia.platform.IMarketPlace

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.