org.snmp4j.util

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Net » snmp4j » org.snmp4j.util 
org.snmp4j.util
org.snmp4j.transport Contains table retrieval utilities and multi-threading support classes as well as miscellaneous utility classes.

The org.snmp4j.util contains the following groups of classes:

  • Classes for SNMP table retrieval. The class TableUtils can be used to asynchronously retrieve table data effeciently row by row.
  • Classes for support of multi-threaded message dispatching. The class MultiThreadedMessageDispatcher implements the MessageDispatcher interface and uses the MessageDispatcherImpl class to dispatch incoming message using the threads of a ThreadPool.

The following UML class diagram shows the classes of the org.snmp4j.util package and their relationships (relationships to other packages are not shown):

Java Source File NameTypeComment
AbstractSnmpUtility.javaClass The AbstractSnmpUtility is an abstract base class for convenience utility classes to retrieve SNMP data.
ArgumentParser.javaClass The ArgumentParser parsers a command line array into Java objects and associates each object with the corresponding command line option according to predefined schemes for options and parameters.

The format specification for options is:

 [-<option>\[<type>[\<<regex>\>]{<parameter>[=<default>]}\]] ...
 
where
  • '-' indicates a mandatory option ('+' would indicate an optional option)
  • <option> is the name of the option, for example 'h' for 'help'
  • <type> is one of 'i' (integer), 'l' (long), and 's' (string)
  • <regex> is a regular expression pattern that describes valid values <default> is a default value.
CommonTimer.javaInterface This CommonTimer defines the subset interface used from java.util.Timer by SNMP4J.
DefaultPDUFactory.javaClass The DefaultPDUFactory is a default implementation of the PDUFactory interface.
DefaultThreadFactory.javaClass
DefaultTimerFactory.javaClass This DefaultTimerFactory creates a new Timer which is configured to run as daemon.
EnumerationIterator.javaClass The EnumerationIterator provides an iterator from an Enumeration .
MultiThreadedMessageDispatcher.javaClass The MultiThreadedMessageDispatcher class is a decorator for any MessageDispatcher instances that processes incoming message with a supplied ThreadPool.
PDUFactory.javaInterface PDUFactory defines the interface for PDU factories.
RetrievalEvent.javaClass The RetrievalEvent is an abstract class representing the result of one or more GET/GETNEXT/GETBULK requests.
SchedulerTask.javaInterface The SchedulerTask extends the Runnable interface by methods that are needed for recurrent execution of a task.
TableEvent.javaClass The TableEvent class reports events in a table retrieval operation.
TableListener.javaInterface The TableListener interface is implemented by objects listening for table events.
TableUtils.javaClass The TableUtils class provides utility functions to retrieve SNMP tabular data.
TaskScheduler.javaClass The TaskScheduler uses a ThreadPool to recurrent execute SchedulerTasks.
ThreadFactory.javaInterface The ThreadFactory describes a factory for threads of execution modeled as WorkerTasks.
ThreadPool.javaClass The ThreadPool provides a pool of a fixed number of threads that are capable to execute tasks that implement the Runnable interface concurrently.
TimerFactory.javaInterface The TimerFactory describes a factory for CommonTimer instances.
TreeEvent.javaClass The TreeEvent class reports events in a tree retrieval operation.
TreeListener.javaInterface The TreeListener interface is implemented by objects listening for tree events.
TreeUtils.javaClass
WorkerPool.javaInterface The WorkerPool interface models an abstract pool of workers (threads) which can execute WorkerTask s concurrently.
WorkerTask.javaInterface This models a WorkerTask instance that would be executed by a WorkerPool upon submission.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.