Package org.sdnplatform.sync.thrift

Examples of org.sdnplatform.sync.thrift.SyncError


            ec = ((SyncException)error).getErrorType().getValue();
        } else {
            logger.error("Unexpected error processing message " + transactionId
                         + "(" + type + ")", error);
        }
        SyncError m = new SyncError();
        m.setErrorCode(ec);
        m.setMessage(error.getMessage());
        ErrorMessage em = new ErrorMessage();
        em.setError(m);
        em.setType(type);
        AsyncMessageHeader header = new AsyncMessageHeader();
        header.setTransactionId(transactionId);
View Full Code Here

TOP

Related Classes of org.sdnplatform.sync.thrift.SyncError

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.