Package org.agilewiki.jid.scalar.vlens.actor

Examples of org.agilewiki.jid.scalar.vlens.actor.RootJid


/**
* Partially deserializes the transactions in a block.
*/
public class Deserializer extends BlockSource implements BlockProcessor {
    public void processBlock(ProcessBlock req, RP rp) throws Exception {
        RootJid rootJid = req.block.getRootJid(getMailboxFactory().createMailbox(), getParent());
        EvaluatorListJid transactionListJid = (EvaluatorListJid) rootJid.getValue();
        int i = 0;
        while (i < transactionListJid.size()) {
            ActorJid actorJid = (ActorJid) transactionListJid.iGet(i);
            try {
                actorJid.getValue();
View Full Code Here

TOP

Related Classes of org.agilewiki.jid.scalar.vlens.actor.RootJid

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.