Package railo.runtime.type.scope

Examples of railo.runtime.type.scope.ClusterEntryImpl


  public SpoolerTask createRemoteClientTask(ExecutionPlan[] plans,RemoteClient remoteClient,Struct attrColl,String callerId, String type) {
    return new RemoteClientTask(plans,remoteClient,attrColl,callerId, type);
  }

  public ClusterEntry createClusterEntry(Key key,Serializable value, int offset) {
    return new ClusterEntryImpl(key,value,offset);
  }
View Full Code Here


    Iterator<Object> it = entries.valueIterator();
    Cluster cluster = pageContext.clusterScope();
    while(it.hasNext()) {
      entry=Caster.toStruct(it.next());
      cluster.setEntry(
        new ClusterEntryImpl(
            KeyImpl.getInstance(Caster.toString(entry.get(KeyConstants._key))),
            Caster.toSerializable(entry.get(KeyConstants._value,null),null),
            Caster.toLongValue(entry.get(KeyConstants._time))
        )
      );
View Full Code Here

TOP

Related Classes of railo.runtime.type.scope.ClusterEntryImpl

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.