Package org.getspout.spout.precache

Examples of org.getspout.spout.precache.PrecacheTuple


    count = pluginMap.size();
    plugins = new PrecacheTuple[count];
    int i = 0;
    for (Entry entry : pluginMap.entrySet()) {
      Plugin p = (Plugin) entry.getKey();
      plugins[i] = new PrecacheTuple(
          p.getDescription().getName(),
          p.getDescription().getVersion(),
          (Long) entry.getValue()
      );
      i++;
View Full Code Here


      plugins = new PrecacheTuple[count];
      for (int i = 0; i < count; i++) {
        String plugin = input.readString();
        String version = input.readString();
        long crc = input.readLong();
        plugins[i] = new PrecacheTuple(plugin, version, crc);
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.getspout.spout.precache.PrecacheTuple

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.