All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.projectfloodlight.openflow.util.FunnelUtils Maven / Gradle / Ivy

package org.projectfloodlight.openflow.util;

import java.util.List;

import org.projectfloodlight.openflow.types.PrimitiveSinkable;

import com.google.common.hash.PrimitiveSink;

public class FunnelUtils {
    public static void putList(List sinkables, PrimitiveSink sink) {
        for(PrimitiveSinkable p: sinkables)
            p.putTo(sink);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy