Package com.onionnetworks.util

Examples of com.onionnetworks.util.Tuple


     * one.
     */
    public synchronized FECCode createFECCode(int k, int n) {
        Integer K = new Integer(k);
        Integer N = new Integer(n);
        Tuple t = new Tuple(K,N);

        // See if there is a cached code.
        FECCode result = null; //(FECCode) codeCache.get(t);
        if (result == null) {
            if (k < 1 || k > 65536 || n < k || n > 65536) {
View Full Code Here

TOP

Related Classes of com.onionnetworks.util.Tuple

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.