diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/CommonAPI/Runtime.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/CommonAPI/Runtime.h b/src/CommonAPI/Runtime.h index bc86062..d7a366d 100644 --- a/src/CommonAPI/Runtime.h +++ b/src/CommonAPI/Runtime.h @@ -76,6 +76,9 @@ class Runtime { * * Create a factory for the loaded rluntime * + * @param In case mainloop integration shall be used, a std::shared_ptr<MainLoopContext> can be passed in. + * If no parameter is given, internal threading will handle sending and receiving of messages automatically. + * * @return Factory object for the loaded runtime */ virtual std::shared_ptr<Factory> createFactory(std::shared_ptr<MainLoopContext> = std::shared_ptr<MainLoopContext>(NULL)) = 0; |