Package org.snmp4j.agent.request

Examples of org.snmp4j.agent.request.SubRequestIteratorSupport


      if (requestEvent.getCommand().getType() == AgentXPDU.AGENTX_GETBULK_PDU) {
        AgentXGetBulkPDU getBulk = (AgentXGetBulkPDU) requestEvent.getCommand();
        int repeaters = getBulk.size() - getBulk.getNonRepeaters();
        return new AgentXSubRequestIterator(getIndex(), repeaters);
      }
      return new SubRequestIteratorSupport(Collections.EMPTY_LIST.iterator());
    }
View Full Code Here


  public AgentXPDU getAgentXPDU() {
    return pendingPDU;
  }

  public SubRequestIterator getReferences() {
    return new SubRequestIteratorSupport(Collections.EMPTY_LIST.iterator());
  }
View Full Code Here

TOP

Related Classes of org.snmp4j.agent.request.SubRequestIteratorSupport

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.