#include <it_bus_pdk/context.h>
Definition at line 204 of file context.h.
Public Member Functions | |
virtual AnyType * | get_context (const QName &context_name, bool create_if_not_found=false)=0 |
Return a pointer to a specific context. | |
virtual const AnyType * | get_context (const QName &context_name) const =0 |
Return a pointer to a specific context. | |
virtual Boolean | add_context (const QName &context_name, AnyType &context)=0 |
Add specific context to the container for context that is generated from a schema description. | |
virtual Context * | get_context_data (const QName &context_name)=0 |
Return a pointer to a specific context. | |
virtual const Context * | get_context_data (const QName &context_name) const =0 |
Return a pointer to a specific context. | |
virtual BindingContext * | get_binding_context (const QName &context_name, const QName &binding_context, bool create_if_not_found=false)=0 |
Return a binding specific context. | |
virtual const BindingContext * | get_binding_context (const QName &context_name, const QName &binding_context) const =0 |
Return a binding specific context. | |
virtual Boolean | add_context (const QName &context_name, Context &context)=0 |
Add specific context to the container for context that is not generated from a schema description. | |
virtual Boolean | remove_context (const QName &context_name)=0 |
Remove Context from container if present. | |
virtual bool | contains (const QName &context_name)=0 |
Returns a indicator as to whether this container contains a specific context. |
|
Add specific context to the container for context that is not generated from a schema description. The context is a just C++ object that derives from Context.
|
|
Add specific context to the container for context that is generated from a schema description.
|
|
Returns a indicator as to whether this container contains a specific context.
|
|
Return a binding specific context.
|
|
Return a binding specific context.
|
|
Return a pointer to a specific context.
|
|
Return a pointer to a specific context.
For example, for the built-in context representing the HTTP client outgoing context, the following code retrieves the context from the request container and casts to the appropriate type (clientType).
IT_Bus::Bus_var bus = IT_Bus::init(argc, argv); ContextRegistry* registry = bus -> get_context_registry(); ContextCurrent& current = registry -> get_current(); ContextContainer* request_container = current.request_contexts(); AnyType& info = request_container -> get_context ( IT_ContextAttributes::HTTP_CLIENT_OUTGOING_CONTEXTS, true ); clientType& config = dynamic_cast<clientType&> (info); |
|
Return a pointer to a specific context.
|
|
Return a pointer to a specific context.
|
|
Remove Context from container if present.
|