Package cc.redberry.transformation

Examples of cc.redberry.transformation.TransformationException


    @Override
    public Tensor transform(Tensor tensor) {
        if (!(tensor instanceof Sum))
            return tensor;
        if(inputPort.closed())
            throw new TransformationException("Transformation destroied: create new instance.");
        for (Tensor summand : tensor)
            inputPort.put(summand);
        inputPort.put(null);
        return inputPort.result();
    }
View Full Code Here

TOP

Related Classes of cc.redberry.transformation.TransformationException

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.