Java Sleep sleepForever()

Here you can find the source of sleepForever()

Description

A really bad way to keep a thread waiting.

License

Apache License

Exception

Parameter Description
InterruptedException an exception

Declaration

public static void sleepForever() throws InterruptedException 

Method Source Code

//package com.java2s;
/***************************************************************************
 * Copyright 2013 DFG SPP 1593 (http://dfg-spp1593.de)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License./*w ww.  ja  va 2  s .com*/
 ***************************************************************************/

public class Main {
    /**
     * A really bad way to keep a thread waiting.
     * 
     * @throws InterruptedException
     */
    public static void sleepForever() throws InterruptedException {
        while (true) {
            Thread.sleep(10000);
            Thread.yield();
        }

    }
}

Related

  1. sleepFor(int delay )
  2. sleepFor(int sleepDurationInMilliseconds)
  3. sleepFor(long millis)
  4. sleepForAuditGranularity()
  5. sleepForever()
  6. sleepForever()
  7. sleepForIOCatchup()
  8. sleepForReal(long time)
  9. sleepForSecs(double numSecs)