Package co.paralleluniverse.galaxy.core.Message

Examples of co.paralleluniverse.galaxy.core.Message.ALLOCED_REF


    }

    @Override
    public void receive(Message message) {
        if (message instanceof ALLOCED_REF) {
            final ALLOCED_REF m = (ALLOCED_REF) message;
            support.fireRefsAllocated(m.getStart(), m.getNum());
        } else {
            LOG.error("Unexpected message: {}", message);
            throw new AssertionError();
        }
    }
View Full Code Here

TOP

Related Classes of co.paralleluniverse.galaxy.core.Message.ALLOCED_REF

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.