Package ecks.Threads

Examples of ecks.Threads.SrvAuth_ExpiryThread


    public void introduce() {
        Hooks.regHook(this, Hooks.Events.E_PRIVMSG);
        Generic.srvIntroduce(this);

        // start a thread to clear expired users
        util.startThread(new Thread(new SrvAuth_ExpiryThread())).start();
        Logging.info("SRVAUTH", "Expiry thread started...");

        if (!(Configuration.Config.get("debugchan").equals("OFF")))
            Generic.srvJoin(this, Configuration.Config.get("debugchan"), "+stn");
    }
View Full Code Here

TOP

Related Classes of ecks.Threads.SrvAuth_ExpiryThread

Copyright © 2018 www.massapicom. 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.