rospy internal core implementation library
Class |
|
No class docstring; 0/1 class variable, 1/1 method documented |
Class |
|
Undocumented |
Class |
|
No class docstring; 0/1 class variable, 1/1 method documented |
Class |
|
Undocumented |
Function | add |
Add client method to invoke when system shuts down. Unlike L{add_shutdown_hook} and L{add_preshutdown_hooks}, these methods will be called before any rospy internal shutdown code. |
Function | add |
Add method to invoke when system shuts down. Unlike L{add_shutdown_hook}, these methods will be called before any other shutdown hooks. |
Function | add |
Add method to invoke when system shuts down. |
Function | configure |
Setup filesystem logging for this node @param node_name: Node's name @type node_name str @param level: (optional) Python logging level (INFO, DEBUG, etc...). (Default: logging.INFO) @type level: int |
Function | deprecated |
This is a decorator which can be used to mark functions as deprecated. It will result in a warning being emitted when the function is used. |
Function | is |
Get the initialization state of the local node. If True, node has been configured. @return: True if local node initialized @rtype: bool |
Function | is |
is_shutdown_requested is a state that occurs just before is_shutdown. It is initiated when a shutdown requested is received and continues until client shutdown handlers have been called. After client shutdown handlers have been serviced, the is_shutdown state becomes true. |
Function | is |
Validator that checks that parameter is a valid ROS topic name |
Function | logdebug |
Undocumented |
Function | logerr |
Undocumented |
Function | logfatal |
Undocumented |
Function | loginfo |
Undocumented |
Function | logwarn |
Undocumented |
Function | register |
register system signal handlers for SIGTERM and SIGINT |
Function | rospydebug |
Internal rospy client library debug logging |
Function | rospyerr |
Internal rospy client library error logging |
Function | rospyinfo |
Internal rospy client library debug logging |
Function | rospywarn |
Internal rospy client library warn logging |
Function | set |
set the initialization state of the local node @param initialized: True if node initialized @type initialized: bool |
Function | set |
set the URI of the local node. This is an internal API method, it does not actually affect the XMLRPC URI of the Node. |
Function | xmlrpcapi |
@return: instance for calling remote server or None if not a valid URI @rtype: xmlrpclib.ServerProxy |
Constant | MASTER |
Undocumented |
Constant | ROSRPC |
Undocumented |
Class | _ |
Undocumented |
Function | _add |
shared implementation of add_shutdown_hook and add_preshutdown_hook |
Function | _add |
Register thread that must be joined() on shutdown |
Function | _base |
Undocumented |
Function | _frame |
Undocumented |
Function | _ros |
Undocumented |
Function | _ros |
Undocumented |
Constant | _TIMEOUT |
Undocumented |
Variable | _client |
Undocumented |
Variable | _client |
Undocumented |
Variable | _in |
Undocumented |
Variable | _log |
Undocumented |
Variable | _logger |
Undocumented |
Variable | _logging |
Undocumented |
Variable | _logging |
Undocumented |
Variable | _logging |
Undocumented |
Variable | _preshutdown |
Undocumented |
Variable | _rospy |
Undocumented |
Variable | _shutdown |
Undocumented |
Variable | _shutdown |
Undocumented |
Variable | _shutdown |
Undocumented |
Variable | _shutdown |
Undocumented |
Variable | _signal |
Undocumented |
Variable | _uri |
Undocumented |
Variable | _xmlrpc |
Undocumented |
Variable | _xmlrpc |
Undocumented |
Add client method to invoke when system shuts down. Unlike L{add_shutdown_hook} and L{add_preshutdown_hooks}, these methods will be called before any rospy internal shutdown code.
@param h: function with zero args @type h: fn()
Add method to invoke when system shuts down. Unlike L{add_shutdown_hook}, these methods will be called before any other shutdown hooks.
@param h: function that takes in a single string argument (shutdown reason) @type h: fn(str)
Add method to invoke when system shuts down.
Shutdown hooks are called in the order that they are registered. This is an internal API method that is used to cleanup. See the client X{on_shutdown()} method if you wish to register client hooks.
@param h: function that takes in a single string argument (shutdown reason) @type h: fn(str)
Setup filesystem logging for this node @param node_name: Node's name @type node_name str @param level: (optional) Python logging level (INFO, DEBUG, etc...). (Default: logging.INFO) @type level: int
This is a decorator which can be used to mark functions as deprecated. It will result in a warning being emitted when the function is used.
Get the initialization state of the local node. If True, node has been configured. @return: True if local node initialized @rtype: bool
is_shutdown_requested is a state that occurs just before is_shutdown. It is initiated when a shutdown requested is received and continues until client shutdown handlers have been called. After client shutdown handlers have been serviced, the is_shutdown state becomes true.
@return: True if shutdown has been requested (but possibly not yet initiated) @rtype: bool
set the initialization state of the local node @param initialized: True if node initialized @type initialized: bool
set the URI of the local node. This is an internal API method, it does not actually affect the XMLRPC URI of the Node.
@return: instance for calling remote server or None if not a valid URI @rtype: xmlrpclib.ServerProxy
Undocumented