Hi, how to mark the thread as sticky thread?

Hi,
how to mark the thread as sticky thread?
Thanks & Regards,
Swathi

this can be done by moderators or admins only. You should contact one of them so they can decide whether a post can be sticked or not.

Similar Messages

  • How to mark entire thread as read in KMail's filter?

    In company I'm working, we have our own bug tracking system. When a bug status is changed, I get a mail. I'm currently grouping these mails as (fake) threads by rewriting theirs Subject header. So far, so good.
    In recent few days, I've had only a little time to check for new messages, a my inbox contains about 500 mails. Lot of them are uninteresting, because they belongs to already closed bugs. I'd like to mark respective threads as read. How can it be done?
    I've searched the filters dialog, but with no luck. Can KMail do it, or am I doomed to manually walking through these mails and (un)marking them as read?
    If KMail cannot do this, is there any good mail client which can?

    Sorry for not being clear enough.
    What I need is mark entire thread as read from filter (ie automatically), but base this decesion on content of only one message from this thread. I know how to mark entire thread manually (as cool pointed). I can mark one message from entire thread  - the one which contains "solved" in it's body (as jac proposed). But I need combine both of these: find a message and mark it's entire thread.

  • How to stop the thread?

    Hi,
    How to stop the thread in java. This is my program.
    import java.net.InetAddress;
    public class ThreadPing extends Thread {
         ThreadPing(String pingIP)
              super(pingIP);
              start();
         public void run()
              try
              String pingIP = Thread.currentThread().getName();
              InetAddress inet = InetAddress.getByName(pingIP);
              Boolean get=inet.isReachable(1500);          
              if(get==true)
                   System.out.println(inet.getHostName());               
              }catch(Exception e)
         public static void main(String args[])
              for(int i=1;i<=100;i++)
                   String pingIP = "192.168.1."+i;
                   ThreadPing tp = new ThreadPing(pingIP);
    Thanks in advance.

    The simplest way to stop all the thread is to make all thread daemons and exit the program when you want them to stop.

  • How to mark the physical tables as cacheable

    Hi All,
    Can someone please tell me how to mark the physical tables as cacheable.
    Thnaks a lot

    Hi,
    by default they are cacheable...
    You can see it on repository, physical layer, right clik on table, properties, on general tab, check cacheable...
    You can specify peristence time...
    See this article, you will find an image with table properties:
    http://obieeblog.wordpress.com/2009/01/19/obiee-cache-is-enabled-but-why-is-the-query-not-cached/
    Regards
    Nicoale
    Edited by: Nicolae Ancuta on 26.05.2010 09:15

  • How to increase the thread count for JDBC adapter

    Hi ALL,
                Could someone advice me on how to increase the thread count for JDBC Adapter in Visual Admin:
    JDBC_http://sap.com/xi/XI/System.Call.maxConsumers 5
    JDBC_http://sap.com/xi/XI/System.Recv.maxConsumers 5
    JDBC_http://sap.com/xi/XI/System.Rqst.maxConsumers 5
    JDBC_http://sap.com/xi/XI/System.Send.maxConsumers 5
    I need to increase them to 10.
    Regards,
    Xier

    hi check the below links:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/806e75a0-0e01-0010-2587-fc518de8ac1a
    admin manual:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/fdb09490-0201-0010-e09e-a76388646ad0
    note:reward points if solution found helpfull.....
    regards
    chandrakanth.k

  • How to send the thread as a link

    Experts
    May be it's a Silly question but I am trying to find out since last one week. How do we send the forum thread as a link??
    Thnaks In advance
    Sat

    currently its not possible to send the whole thread as a email. (check out this thread Email this thread?)
    you can however email  a particular post by clicking "Email this post" link in the post.
    if you want to send the thread as a link you have to right click->copy short cut on the thread and use it to send mail from your mail client.
    Regards
    Raja

  • How to get the thread a sequence plays on?

    Hi, this is sort of a continuation of an earlier question... I have a sequence that plays back with imperfect timing. I would like to 'get a hold' of the thread that it plays back on in order to check / change its priority, etc.
    But a Sequencer is an interface; and it is gotten from the MidiSystem, which is also an interface. I am stumped as how to go about accessing the Java Sound Sequencer thread which does in fact get created by my program when I get a Sequencer from the MidiSystem.
    An excellent suggestion was given to me to extend Sequencer, then use the Thread.getCurrentThread() on my "MySequencer" object. To get a Sequencer, you call MidiSystem.getSequencer() - I can't figure out how to get a "MySequencer" (object that extends Sequencer) rather than a Sequencer from the MidiSystem.
    So, to be clear, my question is - Is there a way to get a reference to the thread that a sequence plays back on?
    Forgive me if this is a boneheaded question... I should have taken more Java classes back when I was in school...
    Thanks

    You think the GUI should be sluggish and keyboard and mouse capture delayed so someone can hear Fur Elise with precise timing as they laggingly scroll through a JTable with their mouse while waiting a few seconds for button clicks to occur?YES! That's ABSOLUTELY what I am suggesting. In none of my previous posts have I said or even suggested that the MIDI file was to be playing in the background have I? This program is about real time music recording and playback. Live, that is.* In front of an audience*. If a midi burp were OK with me, I would not have been pursuing this, would I? Everything I have posted is in relation to the timing needs I have for this program. I don't care if the flippin' screen goes blank, if the MIDI timing is good.
    OK?
    Briefly: The program has two main ... uh.. use cases. First, the GUI is used to pre-program which clips are to played where. This is not done in real time, so I am indifferent to any consideration of timing. It is mainly for this that I use the JTable. But in the Second case, when the play button is hit, the sequence plays and the clips are triggered according to what was previously been entered int the JTable. This sequence plays a drum track which I play along with. The sequence also triggers the clips to be played (via MetaMessages) which have to be to be in time with everything else - or else the program is utterly useless. So I hope you can see that at this point, the GUI doesn't really matter that much, but the timing of the MIDI sequence is crucial.
    I agree with you that perfect midi timing might not be all that important for everyone. But here's a quote from the Java Sound tutorial:
    "The Java Sound API does not include sophisticated sound editors or graphical tools, but it provides capabilities upon which such programs can be built."
    Surely Sun would not expect application designers to go to the trouble of building such programs if the Java Sound API was designed to deliver flawed Midi timing at best? Am I mistaken in thinking that stable Midi timing is possible? From all that I have read over at the Java Sound Resources web site it seems that not everybody suffers from bad MIDI timing.
    -Scott

  • How to run the Thread twice

    Why the program only can print from 0 to 9 once, not twice?
    Thank you!
    Here is my program
    class TestThread extends Thread
         String name;
         public void run(){
              for(int i=0;i<10;i++){
              System.out.println(i);
              try{
              sleep((long)(Math.random()*1000));
              }catch(Exception e){
                   System.out.println(e.toString());
         public static void main(String[] args){
              TestThread t = new TestThread();
              TestThread t1 = new TestThread();
              t.start();
              try{
              t.join();
              }catch(Exception e){
              t.start();

    Why the program only can print from 0 to 9 once, not
    twice?
    Thank you!
    Here is my programBecause the run() method returns after printing the numbers once and sleeping a random amount of time. When you return from the run() method, the thread ends.
    Threads cannot be restarted, i.e., if a thread has ended you cannot call start() on it again. If you want to do that, just create a new object and call start() on it.
    Maybe you want a loop in your run() method:
    public void run() {
      while (true) {   // Keep doing this forever!
        for(int i=0;i<10;i++) {
          System.out.println(i);
          try {
            sleep((long)(Math.random()*1000));
          catch(Exception e) {
            System.out.println(e.toString());
    }Jesper

  • How to clse the thread withut marking it ANSWERED

    Hello, All,
    Can any one elaborate, how can we close any thread without marking it as answered. I am asking it because i need to close some threads regarding to the new announcement regarding New Question Limit of 10"
    Thanks and regards,
    Have happy week end ahead.
    -Shyamal

    Hey Mike,
    Your comments are noted for future. I will do the same way as you suggested of living comments rather I have done the same also.
    Thanks for your valuable sharing.It really clean up my thoughts (I thought it would look dull of having my post only as asker on the page), and boosted up me to participate more actively to the forum.
    Regards,
    Shyamal
    Though the question is answered but more valuable inputs are still welcomed for ever.
    Regards,
    Shyamal
    Edited by: Shyamal Joshi on Jul 4, 2008 7:04 PM
    Edited by: Shyamal Joshi on Jul 4, 2008 7:05 PM

  • How to make the Thread as a Answered

    Dear Support Team,
    How to make  thread as a Answered one , Because  it still showing Not Answered.I want to change the status as a Answered.
    Re: Price Variance hitting PPV account even when there is stock.
    Thanks for our support.
    Regards,
    Thambi.

    You can close this thread by selecting whichever reply you feel is correct as CORRECT ANSWER. OR if you feel there is no proper reply to correct solution, you may also mark your query as Assumed answered.
    Did you not go through How to close a discussion and why
    Regards,
    Jitendra

  • How to get the Thread in another running application??

    Hi,
    If I have a java application running (as daemon), how can I get the running thread context from another new started java application?
    What I'm trying to accomplish here is that, after I started a daemon thread ( a ServerSocket program ), I want to write another program to control the running thread ( query the status, stop it, or restart it ...).
    Any help will be highly appreciated! Thanks.

    A different java application runs in a different Processand they cannot share anything.
    Any lucky out there? Anyone tried something on this?

  • How to mark the number of stars or favorite a movie

    Hi,When I am looking at the list of films in my shared video library, if I click the Options button on the remote at the top of the screen there are five stars, a heart, a date field and size field.  The only thing listed is the size field for the particular video.  How do I rate the film by selecting the number of stars or mark it as favorite by selecting the heart? Thanks!

    For Rating and Favourites .... you need the Media Library  "On"  and when using Network Shares you must add your shares to the Media Library (then select via the red source button "My Media Library")
     Keep reading the User Manual (User manual applies to the Live Strreaming and the WD Media Player 1.02.17)

  • How to change the thread number for user account

    I remember that for each user account, we can limit the maximum thread number it can create for a user process. But how to change this number?
    Thanks,
    Iris

    Hi ,
    I do not think that there is a way to control the number of "threads per user".
    Are you referring to "thread id" ? Please elaborate on your requirement.
    You may want to take a look at the complete list of process sizing tunables
    at:
    http://docs.sun.com/ab2/coll.707.1/SOLTUNEPARAMREF/@Ab2PageView/idmatch(CHAPTER2-4)?Ab2Lang=C&Ab2Enc=iso-8859-1#CHAPTER2-4
    The link can also be accessed as:
    http://docs.sun.com
    Collection Titles
    Solaris Tunable Parameters Collection
    Solaris Tunable Parameters Reference Manual HTH
    Gopinath.
    Developer Technical Support
    Sun Microsystems Inc

  • How to count the Threads, waiting on object's lock?

    Hello!
    I have a vector of the objects. Some threads are waiting on this objects using method wait() to be notified on this object's monitor.
    I will remove an object from the vector in order to save a memory, if there is no threads waiting on it, but how I undestand it?

    You could keep count on how many threads are waiting
    on a particular object and then you'd know it's OK to
    remove the object if this count is zero. Then, of
    course, you'd have to modify your code to increment
    one such count each time a thread is about to call
    wait() and decrement it after the wait() call. (If you
    do that then remember to synchronize the counter
    modification code properly.)Simple way to do this...
    In the object that is being waited on, if you can extend it...
    int nWaiting = 0;
    public synchronized void doWait() {
       nWaiting++;
       wait();
       nWaiting--;
    public sychronized int waitingCount() {
       return nWaiting;
    }Note that this count may still be off if some code uses wait() instead of doWait(). If you have control over the objects that are supposed to be waiting on a given monitor, then waitingCount() will give you an indication of if any are currently waiting.
    Hope this helps,
    -Troy

  • How to increase the thread count in jive forum RSS feed

    Dear All,
    We are using Enterprise portal and we have installed jive forums sp14, we have a requirement of reading forums rss feeds and integrating in to a web page, currently we are doing that but the problem is rss feed in forums has maximum feed of 10, and we don't have the option of giving the user to read entire RSS feed of a particular forum.
    i want increase the RSS feed count how can i do this.
    Please help
    Regards
    Aflal

    Hi Aflal,
    Try this link & see whether it has a solutionr to our issue
    http://docs.jivesoftware.com/latest/documentation/rss.html
    Cheers
    Sukitha

Maybe you are looking for