Java Doc for NGServer.java in  » Net » NailGun » com » martiansoftware » nailgun » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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 » NailGun » com.martiansoftware.nailgun 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.martiansoftware.nailgun.NGServer

NGServer
public class NGServer implements Runnable(Code)

Listens for new connections from NailGun clients and launches NGSession threads to process them.

This class can be run as a standalone server or can be embedded within larger applications as a means of providing command-line interaction with the application.


author:
   Marty Lamb


Field Summary
final public  PrintStreamerr
    
final public  InputStreamin
    
final public  PrintStreamout
    

Constructor Summary
public  NGServer(InetAddress addr, int port)
     Creates a new NGServer that will listen at the specified address and on the specified port. This does not cause the server to start listening.
public  NGServer()
     Creates a new NGServer that will listen on the default port (defined in NGConstants.DEFAULT_PORT). This does not cause the server to start listening.

Method Summary
public  booleanallowsNailsByClassName()
     Returns a flag that indicates whether Nail lookups by classname are allowed.
public  AliasManagergetAliasManager()
     Returns the AliasManager in use by this NGServer.
public  ClassgetDefaultNailClass()
     Returns the default class that will be used if no Nails can be found via alias or classname.
public  MapgetNailStats()
     Returns a snapshot of this NGServer's nail statistics.
public  intgetPort()
     Returns the port on which this server is (or will be) listening.
public  booleanisRunning()
     Returns true iff the server is currently running.
public static  voidmain(String[] args)
     Creates and starts a new NGServer.
 voidnailFinished(Class nailClass)
     Provides a means for an NGSession to register the completion of a nails execution with the server.
 voidnailStarted(Class nailClass)
     Provides a means for an NGSession to register the starting of a nail execution with the server.
public  voidrun()
     Listens for new connections and launches NGSession threads to process them.
public  voidsetAllowNailsByClassName(boolean allowNailsByClassName)
     Sets a flag that determines whether Nails can be executed by class name.
public  voidsetDefaultNailClass(Class defaultNailClass)
     Sets the default class to use for the Nail if no Nails can be found via alias or classname.
public  voidshutdown(boolean exitVM)
    

Shuts down the server.


Field Detail
err
final public PrintStream err(Code)
System.err at the time of the NGServer's creation



in
final public InputStream in(Code)
System.in at the time of the NGServer's creation



out
final public PrintStream out(Code)
System.out at the time of the NGServer's creation




Constructor Detail
NGServer
public NGServer(InetAddress addr, int port)(Code)
Creates a new NGServer that will listen at the specified address and on the specified port. This does not cause the server to start listening. To do so, create a new Thread wrapping this NGServer and start it.
Parameters:
  addr - the address at which to listen, or null to bindto all local addresses
Parameters:
  port - the port on which to listen.



NGServer
public NGServer()(Code)
Creates a new NGServer that will listen on the default port (defined in NGConstants.DEFAULT_PORT). This does not cause the server to start listening. To do so, create a new Thread wrapping this NGServer and start it.




Method Detail
allowsNailsByClassName
public boolean allowsNailsByClassName()(Code)
Returns a flag that indicates whether Nail lookups by classname are allowed. If this is false, Nails can only be run via aliases. a flag that indicates whether Nail lookups by classnameare allowed.



getAliasManager
public AliasManager getAliasManager()(Code)
Returns the AliasManager in use by this NGServer. the AliasManager in use by this NGServer.



getDefaultNailClass
public Class getDefaultNailClass()(Code)
Returns the default class that will be used if no Nails can be found via alias or classname. the default class that will be used if no Nailscan be found via alias or classname.



getNailStats
public Map getNailStats()(Code)
Returns a snapshot of this NGServer's nail statistics. The result is a java.util.Map, keyed by class name, with NailStats objects as values. a snapshot of this NGServer's nail statistics.



getPort
public int getPort()(Code)
Returns the port on which this server is (or will be) listening. the port on which this server is (or will be) listening.



isRunning
public boolean isRunning()(Code)
Returns true iff the server is currently running. true iff the server is currently running.



main
public static void main(String[] args) throws NumberFormatException, UnknownHostException(Code)
Creates and starts a new NGServer. A single optional argument is valid, specifying the port on which this NGServer should listen. If omitted, NGServer.DEFAULT_PORT will be used.
Parameters:
  args - a single optional argument specifying the port on which to listen.
throws:
  NumberFormatException - if a non-numeric port is specified



nailFinished
void nailFinished(Class nailClass)(Code)
Provides a means for an NGSession to register the completion of a nails execution with the server.
Parameters:
  nailClass - the nail class that finished



nailStarted
void nailStarted(Class nailClass)(Code)
Provides a means for an NGSession to register the starting of a nail execution with the server.
Parameters:
  nailClass - the nail class that was launched



run
public void run()(Code)
Listens for new connections and launches NGSession threads to process them.



setAllowNailsByClassName
public void setAllowNailsByClassName(boolean allowNailsByClassName)(Code)
Sets a flag that determines whether Nails can be executed by class name. If this is false, Nails can only be run via aliases (and you should probably remove ng-alias from the AliasManager).
Parameters:
  allowNailsByClassName - true iff Nail lookups by classname are allowed



setDefaultNailClass
public void setDefaultNailClass(Class defaultNailClass)(Code)
Sets the default class to use for the Nail if no Nails can be found via alias or classname. (may be null, in which case NailGun will use its own default)
Parameters:
  defaultNailClass - the default class to use for the Nailif no Nails can be found via alias or classname.(may be null, in which case NailGun will useits own default)



shutdown
public void shutdown(boolean exitVM)(Code)

Shuts down the server. The server will stop listening and its thread will finish. Any running nails will be allowed to finish.

Any nails that provide a

public static void nailShutdown(NGServer)
method will have this method called with this NGServer as its sole parameter.


Parameters:
  exitVM - if true, this method will also exit the JVM aftercalling nailShutdown() on any nails. This may prevent currentlyrunning nails from exiting gracefully, but may be necessary in orderto perform some tasks, such as shutting down any AWT or Swing threadsimplicitly launched by your nails.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.