Package avrora.sim.clock

Examples of avrora.sim.clock.IntervalSynchronizer$SynchEvent


    private static final int INTERVAL_TIME = TRANSFER_TIME * INTERVALS;

    public SimpleAir() {
        radios = new HashSet();
        radioChannel = new Channel(8 * INTERVALS, INTERVAL_TIME, true);
        synchronizer = new IntervalSynchronizer(INTERVAL_TIME, new MeetEvent());
    }
View Full Code Here


     * new free space air
     */
    public FreeSpaceAir(Topology top) {
        topology = top;
        radios = new HashSet();
        synchronizer = new IntervalSynchronizer(bytePeriod, new MeetEvent());
        rssi_waiters = new TreeSet();
        airMap = new HashMap();
    }
View Full Code Here

TOP

Related Classes of avrora.sim.clock.IntervalSynchronizer$SynchEvent

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.