BitShares-Core
5.1.0
BitShares blockchain implementation and command-line interface software
|
#include <template_plugin.hpp>
Public Member Functions | |
template_plugin () | |
virtual | ~template_plugin () |
std::string | plugin_name () const override |
std::string | plugin_description () const override |
virtual void | plugin_set_program_options (boost::program_options::options_description &cli, boost::program_options::options_description &cfg) override |
Fill in command line parameters used by the plugin. More... | |
virtual void | plugin_initialize (const boost::program_options::variables_map &options) override |
Perform early startup routines and register plugin indexes, callbacks, etc. More... | |
virtual void | plugin_startup () override |
Begin normal runtime operations. More... | |
![]() | |
plugin () | |
virtual | ~plugin () override |
virtual void | plugin_shutdown () override |
Cleanly shut down the plugin. More... | |
virtual void | plugin_set_app (application *app) override |
Register the application instance with the plugin. More... | |
chain::database & | database () |
application & | app () const |
![]() | |
virtual | ~abstract_plugin () |
Public Attributes | |
std::unique_ptr< detail::template_plugin_impl > | my |
Friends | |
class | detail::template_plugin_impl |
Additional Inherited Members | |
![]() | |
net::node & | p2p_node () |
Definition at line 52 of file template_plugin.hpp.
graphene::template_plugin::template_plugin::template_plugin | ( | ) |
Definition at line 67 of file template_plugin.cpp.
|
virtual |
Definition at line 72 of file template_plugin.cpp.
|
overridevirtual |
Reimplemented from graphene::app::plugin.
Definition at line 80 of file template_plugin.cpp.
|
overridevirtual |
Perform early startup routines and register plugin indexes, callbacks, etc.
Plugins MUST supply a method initialize() which will be called early in the application startup. This method should contain early setup code such as initializing variables, adding indexes to the database, registering callback methods from the database, adding APIs, etc., as well as applying any options in the options
map
This method is called BEFORE the database is open, therefore any routines which require any chain state MUST NOT be called by this method. These routines should be performed in startup() instead.
options | The options passed to the application, via configuration files or command line |
Reimplemented from graphene::app::plugin.
Definition at line 96 of file template_plugin.cpp.
|
overridevirtual |
Reimplemented from graphene::app::plugin.
Definition at line 76 of file template_plugin.cpp.
|
overridevirtual |
Fill in command line parameters used by the plugin.
command_line_options | All options this plugin supports taking on the command-line |
config_file_options | All options this plugin supports storing in a configuration file |
This method populates its arguments with any command-line and configuration file options the plugin supports. If a plugin does not need these options, it may simply provide an empty implementation of this method.
Reimplemented from graphene::app::plugin.
Definition at line 85 of file template_plugin.cpp.
|
overridevirtual |
Begin normal runtime operations.
Plugins MUST supply a method startup() which will be called at the end of application startup. This method should contain code which schedules any tasks, or requires chain state.
Reimplemented from graphene::app::plugin.
Definition at line 107 of file template_plugin.cpp.
|
friend |
Definition at line 66 of file template_plugin.hpp.
std::unique_ptr<detail::template_plugin_impl> graphene::template_plugin::template_plugin::my |
Definition at line 67 of file template_plugin.hpp.