Package com.linkedin.databus.core.util

Examples of com.linkedin.databus.core.util.FnvHashFunction


    HashType hashType = HashType.valueOf(hashConf);
    HashFunction fun = null;
    switch (hashType)
    {
      case FNV:
        fun = new FnvHashFunction();
        break;
      case JENKINS:
        fun = new JenkinsHashFunction();
        break;
      default:
View Full Code Here

TOP

Related Classes of com.linkedin.databus.core.util.FnvHashFunction

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.