aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/autogen/Testcase.py
diff options
context:
space:
mode:
Diffstat (limited to 'resources/libraries/python/autogen/Testcase.py')
0 files changed, 0 insertions, 0 deletions
an> * @param name plugin name * @throws NullPointerException if name is null * @throws IllegalArgumentException if plugin was not registered */ void unregister(final String name); /** * Returns callback registered for the plugin. * * @param name plugin name * @return callback provided by the plugin * @throws NullPointerException if name is null * @throws IllegalArgumentException if plugin was not registered */ JVppCallback get(final String name); /** * Sends control ping. Reply handler calls callback registered for give plugin. * * @param clazz identifies plugin that should receive ping callback * @return unique identifer of message in message queue */ int controlPing(final Class<? extends JVpp> clazz) throws VppInvocationException; }