Examples of BoardThreadLink


Examples of plugins.Freetalk.SubscribedBoard.BoardThreadLink

        //throws exception when not found
        final SubscribedBoard board = mFreetalk.getMessageManager().getSubscription(mFreetalk.getIdentityManager().getOwnIdentity(ownIdentityID), boardName);

        synchronized(board) {

          final BoardThreadLink threadLink = board.getThreadLink(threadID);
            final Iterable<BoardReplyLink> messageRefList;
            final Message thread = mFreetalk.getMessageManager().get(threadID); // throws exception when not found
            {
                // send thread root message
                sendSingleMessage(replysender, thread, threadLink.getIndex(), includeMessageText);
            }

            messageRefList = board.getAllThreadReplies(thread.getID(), sortByMessageDateAscending);

            // send all messages of thread
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.