Package com.sishuok.chapter3.web.servlet.chat

Examples of com.sishuok.chapter3.web.servlet.chat.MsgPublisher


    public Callable<Object> callable3() {
        return new Callable<Object>() {
            @Override
            public Object call() throws Exception {
                Thread.sleep(2L * 1000); //暂停两秒
                return new User(1, "zhang");
            }
        };
    }
View Full Code Here

TOP

Related Classes of com.sishuok.chapter3.web.servlet.chat.MsgPublisher

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.