Examples of updateTimestamp()


Examples of org.openstreetmap.osmosis.core.change.v0_6.impl.TimestampSetter.updateTimestamp()

          // The from entity doesn't exist on the to source therefore
          // has been deleted. We don't know when the entity was
          // deleted so set the delete time to the current time.
          changeSink.process(
              new ChangeContainer(
                  timestampSetter.updateTimestamp(fromEntityContainer),
                  ChangeAction.Delete));
          fromEntityContainer = null;
        } else if (comparisonResult > 0) {
          // The to entity doesn't exist on the from source therefore has
          // been created.
View Full Code Here

Examples of org.snmp4j.agent.agentx.master.AgentXQueue.AgentXQueueEntry.updateTimestamp()

    boolean complete = req.isComplete();
    AgentXQueueEntry entry = agentXQueue.get(req.getTransactionID());
    boolean waitingForResponse = false;
    if (entry != null) {
      Collection pending = entry.getPending();
      entry.updateTimestamp();
      for (Iterator it = pending.iterator(); it.hasNext(); ) {
        AgentXPending p = (AgentXPending) it.next();
        if (pending != null) {
          AgentXPDU agentXPDU = p.getAgentXPDU();
          AgentXMasterSession session = p.getSession();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.