Package org.red5.server.api.plugin

Examples of org.red5.server.api.plugin.IRed5Plugin.doStart()


            //set server reference
            red5Plugin.setServer(server);
            //register the plug-in to make it available for lookups
            PluginRegistry.register(red5Plugin);
            //start the plugin
            red5Plugin.doStart();
          }
          log.info("Loaded plugin: {}", pluginMainClass);
        } catch (Throwable t) {
          log.warn("Error loading plugin: {}; Method: {}", pluginMainClass, pluginMainMethod);
          log.error("", t);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.