< prev index next >

src/java.management/share/classes/java/lang/management/ThreadMXBean.java

Print this page




 143      * since the Java virtual machine started.
 144      *
 145      * @return the total number of threads started.
 146      */
 147     public long getTotalStartedThreadCount();
 148 
 149     /**
 150      * Returns the current number of live daemon threads.
 151      *
 152      * @return the current number of live daemon threads.
 153      */
 154     public int getDaemonThreadCount();
 155 
 156     /**
 157      * Returns all live thread IDs.
 158      * Some threads included in the returned array
 159      * may have been terminated when this method returns.
 160      *
 161      * @return an array of {@code long}, each is a thread ID.
 162      *
 163      * @throws java.lang.SecurityException if a security manager
 164      *         exists and the caller does not have
 165      *         ManagementPermission("monitor").
 166      */
 167     public long[] getAllThreadIds();
 168 
 169     /**
 170      * Returns the thread info for a thread of the specified
 171      * {@code id} with no stack trace.
 172      * This method is equivalent to calling:
 173      * <blockquote>
 174      *   {@link #getThreadInfo(long, int) getThreadInfo(id, 0);}
 175      * </blockquote>
 176      *
 177      * <p>
 178      * This method returns a {@code ThreadInfo} object representing
 179      * the thread information for the thread of the specified ID.
 180      * The stack trace, locked monitors, and locked synchronizers
 181      * in the returned {@code ThreadInfo} object will
 182      * be empty.
 183      *
 184      * If a thread of the given ID is not alive or does not exist,
 185      * this method will return {@code null}.  A thread is alive if
 186      * it has been started and has not yet died.
 187      *
 188      * <p>
 189      * <b>MBeanServer access</b>:<br>
 190      * The mapped type of {@code ThreadInfo} is
 191      * {@code CompositeData} with attributes as specified in the
 192      * {@link ThreadInfo#from ThreadInfo.from} method.
 193      *
 194      * @param id the thread ID of the thread. Must be positive.
 195      *
 196      * @return a {@link ThreadInfo} object for the thread of the given ID
 197      * with no stack trace, no locked monitor and no synchronizer info;
 198      * {@code null} if the thread of the given ID is not alive or
 199      * it does not exist.
 200      *
 201      * @throws IllegalArgumentException if {@code id <= 0}.
 202      * @throws java.lang.SecurityException if a security manager
 203      *         exists and the caller does not have
 204      *         ManagementPermission("monitor").
 205      */
 206     public ThreadInfo getThreadInfo(long id);
 207 
 208     /**
 209      * Returns the thread info for each thread
 210      * whose ID is in the input array {@code ids} with no stack trace.
 211      * This method is equivalent to calling:
 212      * <blockquote><pre>
 213      *   {@link #getThreadInfo(long[], int) getThreadInfo}(ids, 0);
 214      * </pre></blockquote>
 215      *
 216      * <p>
 217      * This method returns an array of the {@code ThreadInfo} objects.
 218      * The stack trace, locked monitors, and locked synchronizers
 219      * in each {@code ThreadInfo} object will be empty.
 220      *
 221      * If a thread of a given ID is not alive or does not exist,
 222      * the corresponding element in the returned array will
 223      * contain {@code null}.  A thread is alive if
 224      * it has been started and has not yet died.
 225      *
 226      * <p>
 227      * <b>MBeanServer access</b>:<br>
 228      * The mapped type of {@code ThreadInfo} is
 229      * {@code CompositeData} with attributes as specified in the
 230      * {@link ThreadInfo#from ThreadInfo.from} method.
 231      *
 232      * @param ids an array of thread IDs.
 233      * @return an array of the {@link ThreadInfo} objects, each containing
 234      * information about a thread whose ID is in the corresponding
 235      * element of the input array of IDs
 236      * with no stack trace, no locked monitor and no synchronizer info.
 237      *
 238      * @throws IllegalArgumentException if any element in the input array
 239      *         {@code ids} is {@code <= 0}.
 240      * @throws java.lang.SecurityException if a security manager
 241      *         exists and the caller does not have
 242      *         ManagementPermission("monitor").
 243      */
 244     public ThreadInfo[] getThreadInfo(long[] ids);
 245 
 246     /**
 247      * Returns a thread info for a thread of the specified {@code id},
 248      * with stack trace of a specified number of stack trace elements.
 249      * The {@code maxDepth} parameter indicates the maximum number of
 250      * {@link StackTraceElement} to be retrieved from the stack trace.
 251      * If {@code maxDepth == Integer.MAX_VALUE}, the entire stack trace of
 252      * the thread will be dumped.
 253      * If {@code maxDepth == 0}, no stack trace of the thread
 254      * will be dumped.
 255      * This method does not obtain the locked monitors and locked
 256      * synchronizers of the thread.
 257      * <p>
 258      * When the Java virtual machine has no stack trace information
 259      * about a thread or {@code maxDepth == 0},
 260      * the stack trace in the


 267      * it has been started and has not yet died.
 268      *
 269      * <p>
 270      * <b>MBeanServer access</b>:<br>
 271      * The mapped type of {@code ThreadInfo} is
 272      * {@code CompositeData} with attributes as specified in the
 273      * {@link ThreadInfo#from ThreadInfo.from} method.
 274      *
 275      * @param id the thread ID of the thread. Must be positive.
 276      * @param maxDepth the maximum number of entries in the stack trace
 277      * to be dumped. {@code Integer.MAX_VALUE} could be used to request
 278      * the entire stack to be dumped.
 279      *
 280      * @return a {@link ThreadInfo} of the thread of the given ID
 281      * with no locked monitor and synchronizer info.
 282      * {@code null} if the thread of the given ID is not alive or
 283      * it does not exist.
 284      *
 285      * @throws IllegalArgumentException if {@code id <= 0}.
 286      * @throws IllegalArgumentException if {@code maxDepth is negative}.
 287      * @throws java.lang.SecurityException if a security manager
 288      *         exists and the caller does not have
 289      *         ManagementPermission("monitor").
 290      *
 291      */
 292     public ThreadInfo getThreadInfo(long id, int maxDepth);
 293 
 294     /**
 295      * Returns the thread info for each thread
 296      * whose ID is in the input array {@code ids},
 297      * with stack trace of a specified number of stack trace elements.
 298      * The {@code maxDepth} parameter indicates the maximum number of
 299      * {@link StackTraceElement} to be retrieved from the stack trace.
 300      * If {@code maxDepth == Integer.MAX_VALUE}, the entire stack trace of
 301      * the thread will be dumped.
 302      * If {@code maxDepth == 0}, no stack trace of the thread
 303      * will be dumped.
 304      * This method does not obtain the locked monitors and locked
 305      * synchronizers of the threads.
 306      * <p>
 307      * When the Java virtual machine has no stack trace information


 320      *
 321      * <p>
 322      * <b>MBeanServer access</b>:<br>
 323      * The mapped type of {@code ThreadInfo} is
 324      * {@code CompositeData} with attributes as specified in the
 325      * {@link ThreadInfo#from ThreadInfo.from} method.
 326      *
 327      * @param ids an array of thread IDs
 328      * @param maxDepth the maximum number of entries in the stack trace
 329      * to be dumped. {@code Integer.MAX_VALUE} could be used to request
 330      * the entire stack to be dumped.
 331      *
 332      * @return an array of the {@link ThreadInfo} objects, each containing
 333      * information about a thread whose ID is in the corresponding
 334      * element of the input array of IDs with no locked monitor and
 335      * synchronizer info.
 336      *
 337      * @throws IllegalArgumentException if {@code maxDepth is negative}.
 338      * @throws IllegalArgumentException if any element in the input array
 339      *      {@code ids} is {@code <= 0}.
 340      * @throws java.lang.SecurityException if a security manager
 341      *         exists and the caller does not have
 342      *         ManagementPermission("monitor").
 343      *
 344      */
 345     public ThreadInfo[] getThreadInfo(long[] ids, int maxDepth);
 346 
 347     /**
 348      * Tests if the Java virtual machine supports thread contention monitoring.
 349      *
 350      * @return
 351      *   {@code true}
 352      *     if the Java virtual machine supports thread contention monitoring;
 353      *   {@code false} otherwise.
 354      */
 355     public boolean isThreadContentionMonitoringSupported();
 356 
 357     /**
 358      * Tests if thread contention monitoring is enabled.
 359      *
 360      * @return {@code true} if thread contention monitoring is enabled;
 361      *         {@code false} otherwise.
 362      *
 363      * @throws java.lang.UnsupportedOperationException if the Java virtual
 364      * machine does not support thread contention monitoring.
 365      *
 366      * @see #isThreadContentionMonitoringSupported
 367      */
 368     public boolean isThreadContentionMonitoringEnabled();
 369 
 370     /**
 371      * Enables or disables thread contention monitoring.
 372      * Thread contention monitoring is disabled by default.
 373      *
 374      * @param enable {@code true} to enable;
 375      *               {@code false} to disable.
 376      *
 377      * @throws java.lang.UnsupportedOperationException if the Java
 378      * virtual machine does not support thread contention monitoring.
 379      *
 380      * @throws java.lang.SecurityException if a security manager
 381      *         exists and the caller does not have
 382      *         ManagementPermission("control").
 383      *
 384      * @see #isThreadContentionMonitoringSupported
 385      */
 386     public void setThreadContentionMonitoringEnabled(boolean enable);
 387 
 388     /**
 389      * Returns the total CPU time for the current thread in nanoseconds.
 390      * The returned value is of nanoseconds precision but
 391      * not necessarily nanoseconds accuracy.
 392      * If the implementation distinguishes between user mode time and system
 393      * mode time, the returned CPU time is the amount of time that
 394      * the current thread has executed in user mode or system mode.
 395      *
 396      * <p>
 397      * This is a convenient method for local management use and is
 398      * equivalent to calling:
 399      * <blockquote><pre>
 400      *   {@link #getThreadCpuTime getThreadCpuTime}(Thread.currentThread().getId());
 401      * </pre></blockquote>
 402      *
 403      * @return the total CPU time for the current thread if CPU time
 404      * measurement is enabled; {@code -1} otherwise.
 405      *
 406      * @throws java.lang.UnsupportedOperationException if the Java
 407      * virtual machine does not support CPU time measurement for
 408      * the current thread.
 409      *
 410      * @see #getCurrentThreadUserTime
 411      * @see #isCurrentThreadCpuTimeSupported
 412      * @see #isThreadCpuTimeEnabled
 413      * @see #setThreadCpuTimeEnabled
 414      */
 415     public long getCurrentThreadCpuTime();
 416 
 417     /**
 418      * Returns the CPU time that the current thread has executed
 419      * in user mode in nanoseconds.
 420      * The returned value is of nanoseconds precision but
 421      * not necessarily nanoseconds accuracy.
 422      *
 423      * <p>
 424      * This is a convenient method for local management use and is
 425      * equivalent to calling:
 426      * <blockquote><pre>
 427      *   {@link #getThreadUserTime getThreadUserTime}(Thread.currentThread().getId());
 428      * </pre></blockquote>
 429      *
 430      * @return the user-level CPU time for the current thread if CPU time
 431      * measurement is enabled; {@code -1} otherwise.
 432      *
 433      * @throws java.lang.UnsupportedOperationException if the Java
 434      * virtual machine does not support CPU time measurement for
 435      * the current thread.
 436      *
 437      * @see #getCurrentThreadCpuTime
 438      * @see #isCurrentThreadCpuTimeSupported
 439      * @see #isThreadCpuTimeEnabled
 440      * @see #setThreadCpuTimeEnabled
 441      */
 442     public long getCurrentThreadUserTime();
 443 
 444     /**
 445      * Returns the total CPU time for a thread of the specified ID in nanoseconds.
 446      * The returned value is of nanoseconds precision but
 447      * not necessarily nanoseconds accuracy.
 448      * If the implementation distinguishes between user mode time and system
 449      * mode time, the returned CPU time is the amount of time that
 450      * the thread has executed in user mode or system mode.
 451      *
 452      * <p>
 453      * If the thread of the specified ID is not alive or does not exist,
 454      * this method returns {@code -1}. If CPU time measurement
 455      * is disabled, this method returns {@code -1}.
 456      * A thread is alive if it has been started and has not yet died.
 457      * <p>
 458      * If CPU time measurement is enabled after the thread has started,
 459      * the Java virtual machine implementation may choose any time up to
 460      * and including the time that the capability is enabled as the point
 461      * where CPU time measurement starts.
 462      *
 463      * @param id the thread ID of a thread
 464      * @return the total CPU time for a thread of the specified ID
 465      * if the thread of the specified ID exists, the thread is alive,
 466      * and CPU time measurement is enabled;
 467      * {@code -1} otherwise.
 468      *
 469      * @throws IllegalArgumentException if {@code id <= 0}.
 470      * @throws java.lang.UnsupportedOperationException if the Java
 471      * virtual machine does not support CPU time measurement for
 472      * other threads.
 473      *
 474      * @see #getThreadUserTime
 475      * @see #isThreadCpuTimeSupported
 476      * @see #isThreadCpuTimeEnabled
 477      * @see #setThreadCpuTimeEnabled
 478      */
 479     public long getThreadCpuTime(long id);
 480 
 481     /**
 482      * Returns the CPU time that a thread of the specified ID
 483      * has executed in user mode in nanoseconds.
 484      * The returned value is of nanoseconds precision but
 485      * not necessarily nanoseconds accuracy.
 486      *
 487      * <p>
 488      * If the thread of the specified ID is not alive or does not exist,
 489      * this method returns {@code -1}. If CPU time measurement
 490      * is disabled, this method returns {@code -1}.
 491      * A thread is alive if it has been started and has not yet died.
 492      * <p>
 493      * If CPU time measurement is enabled after the thread has started,
 494      * the Java virtual machine implementation may choose any time up to
 495      * and including the time that the capability is enabled as the point
 496      * where CPU time measurement starts.
 497      *
 498      * @param id the thread ID of a thread
 499      * @return the user-level CPU time for a thread of the specified ID
 500      * if the thread of the specified ID exists, the thread is alive,
 501      * and CPU time measurement is enabled;
 502      * {@code -1} otherwise.
 503      *
 504      * @throws IllegalArgumentException if {@code id <= 0}.
 505      * @throws java.lang.UnsupportedOperationException if the Java
 506      * virtual machine does not support CPU time measurement for
 507      * other threads.
 508      *
 509      * @see #getThreadCpuTime
 510      * @see #isThreadCpuTimeSupported
 511      * @see #isThreadCpuTimeEnabled
 512      * @see #setThreadCpuTimeEnabled
 513      */
 514     public long getThreadUserTime(long id);
 515 
 516     /**
 517      * Tests if the Java virtual machine implementation supports CPU time
 518      * measurement for any thread.
 519      * A Java virtual machine implementation that supports CPU time
 520      * measurement for any thread will also support CPU time
 521      * measurement for the current thread.
 522      *
 523      * @return
 524      *   {@code true}
 525      *     if the Java virtual machine supports CPU time


 531     /**
 532      * Tests if the Java virtual machine supports CPU time
 533      * measurement for the current thread.
 534      * This method returns {@code true} if {@link #isThreadCpuTimeSupported}
 535      * returns {@code true}.
 536      *
 537      * @return
 538      *   {@code true}
 539      *     if the Java virtual machine supports CPU time
 540      *     measurement for current thread;
 541      *   {@code false} otherwise.
 542      */
 543     public boolean isCurrentThreadCpuTimeSupported();
 544 
 545     /**
 546      * Tests if thread CPU time measurement is enabled.
 547      *
 548      * @return {@code true} if thread CPU time measurement is enabled;
 549      *         {@code false} otherwise.
 550      *
 551      * @throws java.lang.UnsupportedOperationException if the Java virtual
 552      * machine does not support CPU time measurement for other threads
 553      * nor for the current thread.
 554      *
 555      * @see #isThreadCpuTimeSupported
 556      * @see #isCurrentThreadCpuTimeSupported
 557      */
 558     public boolean isThreadCpuTimeEnabled();
 559 
 560     /**
 561      * Enables or disables thread CPU time measurement.  The default
 562      * is platform dependent.
 563      *
 564      * @param enable {@code true} to enable;
 565      *               {@code false} to disable.
 566      *
 567      * @throws java.lang.UnsupportedOperationException if the Java
 568      * virtual machine does not support CPU time measurement for
 569      * any threads nor for the current thread.
 570      *
 571      * @throws java.lang.SecurityException if a security manager
 572      *         exists and the caller does not have
 573      *         ManagementPermission("control").
 574      *
 575      * @see #isThreadCpuTimeSupported
 576      * @see #isCurrentThreadCpuTimeSupported
 577      */
 578     public void setThreadCpuTimeEnabled(boolean enable);
 579 
 580     /**
 581      * Finds cycles of threads that are in deadlock waiting to acquire
 582      * object monitors. That is, threads that are blocked waiting to enter a
 583      * synchronization block or waiting to reenter a synchronization block
 584      * after an {@link Object#wait Object.wait} call,
 585      * where each thread owns one monitor while
 586      * trying to obtain another monitor already held by another thread
 587      * in a cycle.
 588      * <p>
 589      * More formally, a thread is <em>monitor deadlocked</em> if it is
 590      * part of a cycle in the relation "is waiting for an object monitor
 591      * owned by".  In the simplest case, thread A is blocked waiting
 592      * for a monitor owned by thread B, and thread B is blocked waiting
 593      * for a monitor owned by thread A.
 594      * <p>
 595      * This method is designed for troubleshooting use, but not for
 596      * synchronization control.  It might be an expensive operation.
 597      * <p>
 598      * This method finds deadlocks involving only object monitors.
 599      * To find deadlocks involving both object monitors and
 600      * <a href="LockInfo.html#OwnableSynchronizer">ownable synchronizers</a>,
 601      * the {@link #findDeadlockedThreads findDeadlockedThreads} method
 602      * should be used.
 603      *
 604      * @return an array of IDs of the threads that are monitor
 605      * deadlocked, if any; {@code null} otherwise.
 606      *
 607      * @throws java.lang.SecurityException if a security manager
 608      *         exists and the caller does not have
 609      *         ManagementPermission("monitor").
 610      *
 611      * @see #findDeadlockedThreads
 612      */
 613     public long[] findMonitorDeadlockedThreads();
 614 
 615     /**
 616      * Resets the peak thread count to the current number of
 617      * live threads.
 618      *
 619      * @throws java.lang.SecurityException if a security manager
 620      *         exists and the caller does not have
 621      *         ManagementPermission("control").
 622      *
 623      * @see #getPeakThreadCount
 624      * @see #getThreadCount
 625      */
 626     public void resetPeakThreadCount();
 627 
 628     /**
 629      * Finds cycles of threads that are in deadlock waiting to acquire
 630      * object monitors or
 631      * <a href="LockInfo.html#OwnableSynchronizer">ownable synchronizers</a>.
 632      *
 633      * Threads are <em>deadlocked</em> in a cycle waiting for a lock of
 634      * these two types if each thread owns one lock while
 635      * trying to acquire another lock already held
 636      * by another thread in the cycle.
 637      * <p>
 638      * This method is designed for troubleshooting use, but not for
 639      * synchronization control.  It might be an expensive operation.
 640      *
 641      * @return an array of IDs of the threads that are
 642      * deadlocked waiting for object monitors or ownable synchronizers, if any;
 643      * {@code null} otherwise.
 644      *
 645      * @throws java.lang.SecurityException if a security manager
 646      *         exists and the caller does not have
 647      *         ManagementPermission("monitor").
 648      * @throws java.lang.UnsupportedOperationException if the Java virtual
 649      * machine does not support monitoring of ownable synchronizer usage.
 650      *
 651      * @see #isSynchronizerUsageSupported
 652      * @see #findMonitorDeadlockedThreads
 653      * @since 1.6
 654      */
 655     public long[] findDeadlockedThreads();
 656 
 657     /**
 658      * Tests if the Java virtual machine supports monitoring of
 659      * object monitor usage.
 660      *
 661      * @return
 662      *   {@code true}
 663      *     if the Java virtual machine supports monitoring of
 664      *     object monitor usage;
 665      *   {@code false} otherwise.
 666      *
 667      * @see #dumpAllThreads
 668      * @since 1.6


 687 
 688     /**
 689      * Returns the thread info for each thread
 690      * whose ID is in the input array {@code ids},
 691      * with stack trace and synchronization information.
 692      * This is equivalent to calling:
 693      * <blockquote>
 694      * {@link #getThreadInfo(long[], boolean, boolean, int)
 695      * getThreadInfo(ids, lockedMonitors, lockedSynchronizers, Integer.MAX_VALUE)}
 696      * </blockquote>
 697      *
 698      * @param  ids an array of thread IDs.
 699      * @param  lockedMonitors if {@code true}, retrieves all locked monitors.
 700      * @param  lockedSynchronizers if {@code true}, retrieves all locked
 701      *             ownable synchronizers.
 702      *
 703      * @return an array of the {@link ThreadInfo} objects, each containing
 704      * information about a thread whose ID is in the corresponding
 705      * element of the input array of IDs.
 706      *
 707      * @throws java.lang.SecurityException if a security manager
 708      *         exists and the caller does not have
 709      *         ManagementPermission("monitor").
 710      * @throws java.lang.UnsupportedOperationException
 711      *         <ul>
 712      *           <li>if {@code lockedMonitors} is {@code true} but
 713      *               the Java virtual machine does not support monitoring
 714      *               of {@linkplain #isObjectMonitorUsageSupported
 715      *               object monitor usage}; or</li>
 716      *           <li>if {@code lockedSynchronizers} is {@code true} but
 717      *               the Java virtual machine does not support monitoring
 718      *               of {@linkplain #isSynchronizerUsageSupported
 719      *               ownable synchronizer usage}.</li>
 720      *         </ul>
 721      *
 722      * @see #isObjectMonitorUsageSupported
 723      * @see #isSynchronizerUsageSupported
 724      *
 725      * @since 1.6
 726      */
 727     public ThreadInfo[] getThreadInfo(long[] ids, boolean lockedMonitors,
 728                                       boolean lockedSynchronizers);
 729 
 730     /**


 777      * <b>MBeanServer access</b>:<br>
 778      * The mapped type of {@code ThreadInfo} is
 779      * {@code CompositeData} with attributes as specified in the
 780      * {@link ThreadInfo#from ThreadInfo.from} method.
 781      *
 782      * @implSpec The default implementation throws
 783      * {@code UnsupportedOperationException}.
 784      *
 785      * @param  ids an array of thread IDs.
 786      * @param  lockedMonitors if {@code true}, retrieves all locked monitors.
 787      * @param  lockedSynchronizers if {@code true}, retrieves all locked
 788      *             ownable synchronizers.
 789      * @param  maxDepth indicates the maximum number of
 790      * {@link StackTraceElement} to be retrieved from the stack trace.
 791      *
 792      * @return an array of the {@link ThreadInfo} objects, each containing
 793      * information about a thread whose ID is in the corresponding
 794      * element of the input array of IDs.
 795      *
 796      * @throws IllegalArgumentException if {@code maxDepth} is negative.
 797      * @throws java.lang.SecurityException if a security manager
 798      *         exists and the caller does not have
 799      *         ManagementPermission("monitor").
 800      * @throws java.lang.UnsupportedOperationException
 801      *         <ul>
 802      *           <li>if {@code lockedMonitors} is {@code true} but
 803      *               the Java virtual machine does not support monitoring
 804      *               of {@linkplain #isObjectMonitorUsageSupported
 805      *               object monitor usage}; or</li>
 806      *           <li>if {@code lockedSynchronizers} is {@code true} but
 807      *               the Java virtual machine does not support monitoring
 808      *               of {@linkplain #isSynchronizerUsageSupported
 809      *               ownable synchronizer usage}.</li>
 810      *         </ul>
 811      *
 812      * @see #isObjectMonitorUsageSupported
 813      * @see #isSynchronizerUsageSupported
 814      *
 815      * @since 10
 816      */
 817 
 818     public default ThreadInfo[] getThreadInfo(long[] ids, boolean lockedMonitors,
 819                                               boolean lockedSynchronizers, int maxDepth) {
 820         throw new UnsupportedOperationException();
 821     }
 822 
 823     /**
 824      * Returns the thread info for all live threads with stack trace
 825      * and synchronization information.
 826      * This is equivalent to calling:
 827      * <blockquote>
 828      * {@link #dumpAllThreads(boolean, boolean, int)
 829      * dumpAllThreads(lockedMonitors, lockedSynchronizers, Integer.MAX_VALUE)}
 830      * </blockquote>
 831      *
 832      * @param  lockedMonitors if {@code true}, dump all locked monitors.
 833      * @param  lockedSynchronizers if {@code true}, dump all locked
 834      *             ownable synchronizers.
 835      *
 836      * @return an array of {@link ThreadInfo} for all live threads.
 837      *
 838      * @throws java.lang.SecurityException if a security manager
 839      *         exists and the caller does not have
 840      *         ManagementPermission("monitor").
 841      * @throws java.lang.UnsupportedOperationException
 842      *         <ul>
 843      *           <li>if {@code lockedMonitors} is {@code true} but
 844      *               the Java virtual machine does not support monitoring
 845      *               of {@linkplain #isObjectMonitorUsageSupported
 846      *               object monitor usage}; or</li>
 847      *           <li>if {@code lockedSynchronizers} is {@code true} but
 848      *               the Java virtual machine does not support monitoring
 849      *               of {@linkplain #isSynchronizerUsageSupported
 850      *               ownable synchronizer usage}.</li>
 851      *         </ul>
 852      *
 853      * @see #isObjectMonitorUsageSupported
 854      * @see #isSynchronizerUsageSupported
 855      *
 856      * @since 1.6
 857      */
 858     public ThreadInfo[] dumpAllThreads(boolean lockedMonitors, boolean lockedSynchronizers);
 859 
 860 
 861     /**


 867      * Some threads included in the returned array
 868      * may have been terminated when this method returns.
 869      *
 870      * <p>
 871      * This method returns an array of {@link ThreadInfo} objects
 872      * as specified in the {@link #getThreadInfo(long[], boolean, boolean, int)}
 873      * method.
 874      *
 875      * @implSpec The default implementation throws
 876      * {@code UnsupportedOperationException}.
 877      *
 878      * @param  lockedMonitors if {@code true}, dump all locked monitors.
 879      * @param  lockedSynchronizers if {@code true}, dump all locked
 880      *             ownable synchronizers.
 881      * @param  maxDepth indicates the maximum number of
 882      * {@link StackTraceElement} to be retrieved from the stack trace.
 883      *
 884      * @return an array of {@link ThreadInfo} for all live threads.
 885      *
 886      * @throws IllegalArgumentException if {@code maxDepth} is negative.
 887      * @throws java.lang.SecurityException if a security manager
 888      *         exists and the caller does not have
 889      *         ManagementPermission("monitor").
 890      * @throws java.lang.UnsupportedOperationException
 891      *         <ul>
 892      *           <li>if {@code lockedMonitors} is {@code true} but
 893      *               the Java virtual machine does not support monitoring
 894      *               of {@linkplain #isObjectMonitorUsageSupported
 895      *               object monitor usage}; or</li>
 896      *           <li>if {@code lockedSynchronizers} is {@code true} but
 897      *               the Java virtual machine does not support monitoring
 898      *               of {@linkplain #isSynchronizerUsageSupported
 899      *               ownable synchronizer usage}.</li>
 900      *         </ul>
 901      *
 902      * @see #isObjectMonitorUsageSupported
 903      * @see #isSynchronizerUsageSupported
 904      *
 905      * @since 10
 906      */
 907     public default ThreadInfo[] dumpAllThreads(boolean lockedMonitors,
 908                                                boolean lockedSynchronizers, int maxDepth) {
 909         throw new UnsupportedOperationException();
 910     }


 143      * since the Java virtual machine started.
 144      *
 145      * @return the total number of threads started.
 146      */
 147     public long getTotalStartedThreadCount();
 148 
 149     /**
 150      * Returns the current number of live daemon threads.
 151      *
 152      * @return the current number of live daemon threads.
 153      */
 154     public int getDaemonThreadCount();
 155 
 156     /**
 157      * Returns all live thread IDs.
 158      * Some threads included in the returned array
 159      * may have been terminated when this method returns.
 160      *
 161      * @return an array of {@code long}, each is a thread ID.
 162      *
 163      * @throws SecurityException if a security manager
 164      *         exists and the caller does not have
 165      *         ManagementPermission("monitor").
 166      */
 167     public long[] getAllThreadIds();
 168 
 169     /**
 170      * Returns the thread info for a thread of the specified
 171      * {@code id} with no stack trace.
 172      * This method is equivalent to calling:
 173      * <blockquote>
 174      *   {@link #getThreadInfo(long, int) getThreadInfo(id, 0);}
 175      * </blockquote>
 176      *
 177      * <p>
 178      * This method returns a {@code ThreadInfo} object representing
 179      * the thread information for the thread of the specified ID.
 180      * The stack trace, locked monitors, and locked synchronizers
 181      * in the returned {@code ThreadInfo} object will
 182      * be empty.
 183      *
 184      * If a thread of the given ID is not alive or does not exist,
 185      * this method will return {@code null}.  A thread is alive if
 186      * it has been started and has not yet died.
 187      *
 188      * <p>
 189      * <b>MBeanServer access</b>:<br>
 190      * The mapped type of {@code ThreadInfo} is
 191      * {@code CompositeData} with attributes as specified in the
 192      * {@link ThreadInfo#from ThreadInfo.from} method.
 193      *
 194      * @param id the thread ID of the thread. Must be positive.
 195      *
 196      * @return a {@link ThreadInfo} object for the thread of the given ID
 197      * with no stack trace, no locked monitor and no synchronizer info;
 198      * {@code null} if the thread of the given ID is not alive or
 199      * it does not exist.
 200      *
 201      * @throws IllegalArgumentException if {@code id <= 0}.
 202      * @throws SecurityException if a security manager
 203      *         exists and the caller does not have
 204      *         ManagementPermission("monitor").
 205      */
 206     public ThreadInfo getThreadInfo(long id);
 207 
 208     /**
 209      * Returns the thread info for each thread
 210      * whose ID is in the input array {@code ids} with no stack trace.
 211      * This method is equivalent to calling:
 212      * <blockquote><pre>
 213      *   {@link #getThreadInfo(long[], int) getThreadInfo}(ids, 0);
 214      * </pre></blockquote>
 215      *
 216      * <p>
 217      * This method returns an array of the {@code ThreadInfo} objects.
 218      * The stack trace, locked monitors, and locked synchronizers
 219      * in each {@code ThreadInfo} object will be empty.
 220      *
 221      * If a thread of a given ID is not alive or does not exist,
 222      * the corresponding element in the returned array will
 223      * contain {@code null}.  A thread is alive if
 224      * it has been started and has not yet died.
 225      *
 226      * <p>
 227      * <b>MBeanServer access</b>:<br>
 228      * The mapped type of {@code ThreadInfo} is
 229      * {@code CompositeData} with attributes as specified in the
 230      * {@link ThreadInfo#from ThreadInfo.from} method.
 231      *
 232      * @param ids an array of thread IDs.
 233      * @return an array of the {@link ThreadInfo} objects, each containing
 234      * information about a thread whose ID is in the corresponding
 235      * element of the input array of IDs
 236      * with no stack trace, no locked monitor and no synchronizer info.
 237      *
 238      * @throws IllegalArgumentException if any element in the input array
 239      *         {@code ids} is {@code <= 0}.
 240      * @throws SecurityException if a security manager
 241      *         exists and the caller does not have
 242      *         ManagementPermission("monitor").
 243      */
 244     public ThreadInfo[] getThreadInfo(long[] ids);
 245 
 246     /**
 247      * Returns a thread info for a thread of the specified {@code id},
 248      * with stack trace of a specified number of stack trace elements.
 249      * The {@code maxDepth} parameter indicates the maximum number of
 250      * {@link StackTraceElement} to be retrieved from the stack trace.
 251      * If {@code maxDepth == Integer.MAX_VALUE}, the entire stack trace of
 252      * the thread will be dumped.
 253      * If {@code maxDepth == 0}, no stack trace of the thread
 254      * will be dumped.
 255      * This method does not obtain the locked monitors and locked
 256      * synchronizers of the thread.
 257      * <p>
 258      * When the Java virtual machine has no stack trace information
 259      * about a thread or {@code maxDepth == 0},
 260      * the stack trace in the


 267      * it has been started and has not yet died.
 268      *
 269      * <p>
 270      * <b>MBeanServer access</b>:<br>
 271      * The mapped type of {@code ThreadInfo} is
 272      * {@code CompositeData} with attributes as specified in the
 273      * {@link ThreadInfo#from ThreadInfo.from} method.
 274      *
 275      * @param id the thread ID of the thread. Must be positive.
 276      * @param maxDepth the maximum number of entries in the stack trace
 277      * to be dumped. {@code Integer.MAX_VALUE} could be used to request
 278      * the entire stack to be dumped.
 279      *
 280      * @return a {@link ThreadInfo} of the thread of the given ID
 281      * with no locked monitor and synchronizer info.
 282      * {@code null} if the thread of the given ID is not alive or
 283      * it does not exist.
 284      *
 285      * @throws IllegalArgumentException if {@code id <= 0}.
 286      * @throws IllegalArgumentException if {@code maxDepth is negative}.
 287      * @throws SecurityException if a security manager
 288      *         exists and the caller does not have
 289      *         ManagementPermission("monitor").
 290      *
 291      */
 292     public ThreadInfo getThreadInfo(long id, int maxDepth);
 293 
 294     /**
 295      * Returns the thread info for each thread
 296      * whose ID is in the input array {@code ids},
 297      * with stack trace of a specified number of stack trace elements.
 298      * The {@code maxDepth} parameter indicates the maximum number of
 299      * {@link StackTraceElement} to be retrieved from the stack trace.
 300      * If {@code maxDepth == Integer.MAX_VALUE}, the entire stack trace of
 301      * the thread will be dumped.
 302      * If {@code maxDepth == 0}, no stack trace of the thread
 303      * will be dumped.
 304      * This method does not obtain the locked monitors and locked
 305      * synchronizers of the threads.
 306      * <p>
 307      * When the Java virtual machine has no stack trace information


 320      *
 321      * <p>
 322      * <b>MBeanServer access</b>:<br>
 323      * The mapped type of {@code ThreadInfo} is
 324      * {@code CompositeData} with attributes as specified in the
 325      * {@link ThreadInfo#from ThreadInfo.from} method.
 326      *
 327      * @param ids an array of thread IDs
 328      * @param maxDepth the maximum number of entries in the stack trace
 329      * to be dumped. {@code Integer.MAX_VALUE} could be used to request
 330      * the entire stack to be dumped.
 331      *
 332      * @return an array of the {@link ThreadInfo} objects, each containing
 333      * information about a thread whose ID is in the corresponding
 334      * element of the input array of IDs with no locked monitor and
 335      * synchronizer info.
 336      *
 337      * @throws IllegalArgumentException if {@code maxDepth is negative}.
 338      * @throws IllegalArgumentException if any element in the input array
 339      *      {@code ids} is {@code <= 0}.
 340      * @throws SecurityException if a security manager
 341      *         exists and the caller does not have
 342      *         ManagementPermission("monitor").
 343      *
 344      */
 345     public ThreadInfo[] getThreadInfo(long[] ids, int maxDepth);
 346 
 347     /**
 348      * Tests if the Java virtual machine supports thread contention monitoring.
 349      *
 350      * @return
 351      *   {@code true}
 352      *     if the Java virtual machine supports thread contention monitoring;
 353      *   {@code false} otherwise.
 354      */
 355     public boolean isThreadContentionMonitoringSupported();
 356 
 357     /**
 358      * Tests if thread contention monitoring is enabled.
 359      *
 360      * @return {@code true} if thread contention monitoring is enabled;
 361      *         {@code false} otherwise.
 362      *
 363      * @throws UnsupportedOperationException if the Java virtual
 364      * machine does not support thread contention monitoring.
 365      *
 366      * @see #isThreadContentionMonitoringSupported
 367      */
 368     public boolean isThreadContentionMonitoringEnabled();
 369 
 370     /**
 371      * Enables or disables thread contention monitoring.
 372      * Thread contention monitoring is disabled by default.
 373      *
 374      * @param enable {@code true} to enable;
 375      *               {@code false} to disable.
 376      *
 377      * @throws UnsupportedOperationException if the Java
 378      * virtual machine does not support thread contention monitoring.
 379      *
 380      * @throws SecurityException if a security manager
 381      *         exists and the caller does not have
 382      *         ManagementPermission("control").
 383      *
 384      * @see #isThreadContentionMonitoringSupported
 385      */
 386     public void setThreadContentionMonitoringEnabled(boolean enable);
 387 
 388     /**
 389      * Returns the total CPU time for the current thread in nanoseconds.
 390      * The returned value is of nanoseconds precision but
 391      * not necessarily nanoseconds accuracy.
 392      * If the implementation distinguishes between user mode time and system
 393      * mode time, the returned CPU time is the amount of time that
 394      * the current thread has executed in user mode or system mode.
 395      *
 396      * <p>
 397      * This is a convenience method for local management use and is
 398      * equivalent to calling:
 399      * <blockquote><pre>
 400      *   {@link #getThreadCpuTime getThreadCpuTime}(Thread.currentThread().getId());
 401      * </pre></blockquote>
 402      *
 403      * @return the total CPU time for the current thread if CPU time
 404      * measurement is enabled; {@code -1} otherwise.
 405      *
 406      * @throws UnsupportedOperationException if the Java
 407      * virtual machine does not support CPU time measurement for
 408      * the current thread.
 409      *
 410      * @see #getCurrentThreadUserTime
 411      * @see #isCurrentThreadCpuTimeSupported
 412      * @see #isThreadCpuTimeEnabled
 413      * @see #setThreadCpuTimeEnabled
 414      */
 415     public long getCurrentThreadCpuTime();
 416 
 417     /**
 418      * Returns the CPU time that the current thread has executed
 419      * in user mode in nanoseconds.
 420      * The returned value is of nanoseconds precision but
 421      * not necessarily nanoseconds accuracy.
 422      *
 423      * <p>
 424      * This is a convenience method for local management use and is
 425      * equivalent to calling:
 426      * <blockquote><pre>
 427      *   {@link #getThreadUserTime getThreadUserTime}(Thread.currentThread().getId());
 428      * </pre></blockquote>
 429      *
 430      * @return the user-level CPU time for the current thread if CPU time
 431      * measurement is enabled; {@code -1} otherwise.
 432      *
 433      * @throws UnsupportedOperationException if the Java
 434      * virtual machine does not support CPU time measurement for
 435      * the current thread.
 436      *
 437      * @see #getCurrentThreadCpuTime
 438      * @see #isCurrentThreadCpuTimeSupported
 439      * @see #isThreadCpuTimeEnabled
 440      * @see #setThreadCpuTimeEnabled
 441      */
 442     public long getCurrentThreadUserTime();
 443 
 444     /**
 445      * Returns the total CPU time for a thread of the specified ID in nanoseconds.
 446      * The returned value is of nanoseconds precision but
 447      * not necessarily nanoseconds accuracy.
 448      * If the implementation distinguishes between user mode time and system
 449      * mode time, the returned CPU time is the amount of time that
 450      * the thread has executed in user mode or system mode.
 451      *
 452      * <p>
 453      * If the thread of the specified ID is not alive or does not exist,
 454      * this method returns {@code -1}. If CPU time measurement
 455      * is disabled, this method returns {@code -1}.
 456      * A thread is alive if it has been started and has not yet died.
 457      * <p>
 458      * If CPU time measurement is enabled after the thread has started,
 459      * the Java virtual machine implementation may choose any time up to
 460      * and including the time that the capability is enabled as the point
 461      * where CPU time measurement starts.
 462      *
 463      * @param id the thread ID of a thread
 464      * @return the total CPU time for a thread of the specified ID
 465      * if the thread of the specified ID exists, the thread is alive,
 466      * and CPU time measurement is enabled;
 467      * {@code -1} otherwise.
 468      *
 469      * @throws IllegalArgumentException if {@code id <= 0}.
 470      * @throws UnsupportedOperationException if the Java
 471      * virtual machine does not support CPU time measurement for
 472      * other threads.
 473      *
 474      * @see #getThreadUserTime
 475      * @see #isThreadCpuTimeSupported
 476      * @see #isThreadCpuTimeEnabled
 477      * @see #setThreadCpuTimeEnabled
 478      */
 479     public long getThreadCpuTime(long id);
 480 
 481     /**
 482      * Returns the CPU time that a thread of the specified ID
 483      * has executed in user mode in nanoseconds.
 484      * The returned value is of nanoseconds precision but
 485      * not necessarily nanoseconds accuracy.
 486      *
 487      * <p>
 488      * If the thread of the specified ID is not alive or does not exist,
 489      * this method returns {@code -1}. If CPU time measurement
 490      * is disabled, this method returns {@code -1}.
 491      * A thread is alive if it has been started and has not yet died.
 492      * <p>
 493      * If CPU time measurement is enabled after the thread has started,
 494      * the Java virtual machine implementation may choose any time up to
 495      * and including the time that the capability is enabled as the point
 496      * where CPU time measurement starts.
 497      *
 498      * @param id the thread ID of a thread
 499      * @return the user-level CPU time for a thread of the specified ID
 500      * if the thread of the specified ID exists, the thread is alive,
 501      * and CPU time measurement is enabled;
 502      * {@code -1} otherwise.
 503      *
 504      * @throws IllegalArgumentException if {@code id <= 0}.
 505      * @throws UnsupportedOperationException if the Java
 506      * virtual machine does not support CPU time measurement for
 507      * other threads.
 508      *
 509      * @see #getThreadCpuTime
 510      * @see #isThreadCpuTimeSupported
 511      * @see #isThreadCpuTimeEnabled
 512      * @see #setThreadCpuTimeEnabled
 513      */
 514     public long getThreadUserTime(long id);
 515 
 516     /**
 517      * Tests if the Java virtual machine implementation supports CPU time
 518      * measurement for any thread.
 519      * A Java virtual machine implementation that supports CPU time
 520      * measurement for any thread will also support CPU time
 521      * measurement for the current thread.
 522      *
 523      * @return
 524      *   {@code true}
 525      *     if the Java virtual machine supports CPU time


 531     /**
 532      * Tests if the Java virtual machine supports CPU time
 533      * measurement for the current thread.
 534      * This method returns {@code true} if {@link #isThreadCpuTimeSupported}
 535      * returns {@code true}.
 536      *
 537      * @return
 538      *   {@code true}
 539      *     if the Java virtual machine supports CPU time
 540      *     measurement for current thread;
 541      *   {@code false} otherwise.
 542      */
 543     public boolean isCurrentThreadCpuTimeSupported();
 544 
 545     /**
 546      * Tests if thread CPU time measurement is enabled.
 547      *
 548      * @return {@code true} if thread CPU time measurement is enabled;
 549      *         {@code false} otherwise.
 550      *
 551      * @throws UnsupportedOperationException if the Java virtual
 552      * machine does not support CPU time measurement for other threads
 553      * nor for the current thread.
 554      *
 555      * @see #isThreadCpuTimeSupported
 556      * @see #isCurrentThreadCpuTimeSupported
 557      */
 558     public boolean isThreadCpuTimeEnabled();
 559 
 560     /**
 561      * Enables or disables thread CPU time measurement.  The default
 562      * is platform dependent.
 563      *
 564      * @param enable {@code true} to enable;
 565      *               {@code false} to disable.
 566      *
 567      * @throws UnsupportedOperationException if the Java
 568      * virtual machine does not support CPU time measurement for
 569      * any threads nor for the current thread.
 570      *
 571      * @throws SecurityException if a security manager
 572      *         exists and the caller does not have
 573      *         ManagementPermission("control").
 574      *
 575      * @see #isThreadCpuTimeSupported
 576      * @see #isCurrentThreadCpuTimeSupported
 577      */
 578     public void setThreadCpuTimeEnabled(boolean enable);
 579 
 580     /**
 581      * Finds cycles of threads that are in deadlock waiting to acquire
 582      * object monitors. That is, threads that are blocked waiting to enter a
 583      * synchronization block or waiting to reenter a synchronization block
 584      * after an {@link Object#wait Object.wait} call,
 585      * where each thread owns one monitor while
 586      * trying to obtain another monitor already held by another thread
 587      * in a cycle.
 588      * <p>
 589      * More formally, a thread is <em>monitor deadlocked</em> if it is
 590      * part of a cycle in the relation "is waiting for an object monitor
 591      * owned by".  In the simplest case, thread A is blocked waiting
 592      * for a monitor owned by thread B, and thread B is blocked waiting
 593      * for a monitor owned by thread A.
 594      * <p>
 595      * This method is designed for troubleshooting use, but not for
 596      * synchronization control.  It might be an expensive operation.
 597      * <p>
 598      * This method finds deadlocks involving only object monitors.
 599      * To find deadlocks involving both object monitors and
 600      * <a href="LockInfo.html#OwnableSynchronizer">ownable synchronizers</a>,
 601      * the {@link #findDeadlockedThreads findDeadlockedThreads} method
 602      * should be used.
 603      *
 604      * @return an array of IDs of the threads that are monitor
 605      * deadlocked, if any; {@code null} otherwise.
 606      *
 607      * @throws SecurityException if a security manager
 608      *         exists and the caller does not have
 609      *         ManagementPermission("monitor").
 610      *
 611      * @see #findDeadlockedThreads
 612      */
 613     public long[] findMonitorDeadlockedThreads();
 614 
 615     /**
 616      * Resets the peak thread count to the current number of
 617      * live threads.
 618      *
 619      * @throws SecurityException if a security manager
 620      *         exists and the caller does not have
 621      *         ManagementPermission("control").
 622      *
 623      * @see #getPeakThreadCount
 624      * @see #getThreadCount
 625      */
 626     public void resetPeakThreadCount();
 627 
 628     /**
 629      * Finds cycles of threads that are in deadlock waiting to acquire
 630      * object monitors or
 631      * <a href="LockInfo.html#OwnableSynchronizer">ownable synchronizers</a>.
 632      *
 633      * Threads are <em>deadlocked</em> in a cycle waiting for a lock of
 634      * these two types if each thread owns one lock while
 635      * trying to acquire another lock already held
 636      * by another thread in the cycle.
 637      * <p>
 638      * This method is designed for troubleshooting use, but not for
 639      * synchronization control.  It might be an expensive operation.
 640      *
 641      * @return an array of IDs of the threads that are
 642      * deadlocked waiting for object monitors or ownable synchronizers, if any;
 643      * {@code null} otherwise.
 644      *
 645      * @throws SecurityException if a security manager
 646      *         exists and the caller does not have
 647      *         ManagementPermission("monitor").
 648      * @throws UnsupportedOperationException if the Java virtual
 649      * machine does not support monitoring of ownable synchronizer usage.
 650      *
 651      * @see #isSynchronizerUsageSupported
 652      * @see #findMonitorDeadlockedThreads
 653      * @since 1.6
 654      */
 655     public long[] findDeadlockedThreads();
 656 
 657     /**
 658      * Tests if the Java virtual machine supports monitoring of
 659      * object monitor usage.
 660      *
 661      * @return
 662      *   {@code true}
 663      *     if the Java virtual machine supports monitoring of
 664      *     object monitor usage;
 665      *   {@code false} otherwise.
 666      *
 667      * @see #dumpAllThreads
 668      * @since 1.6


 687 
 688     /**
 689      * Returns the thread info for each thread
 690      * whose ID is in the input array {@code ids},
 691      * with stack trace and synchronization information.
 692      * This is equivalent to calling:
 693      * <blockquote>
 694      * {@link #getThreadInfo(long[], boolean, boolean, int)
 695      * getThreadInfo(ids, lockedMonitors, lockedSynchronizers, Integer.MAX_VALUE)}
 696      * </blockquote>
 697      *
 698      * @param  ids an array of thread IDs.
 699      * @param  lockedMonitors if {@code true}, retrieves all locked monitors.
 700      * @param  lockedSynchronizers if {@code true}, retrieves all locked
 701      *             ownable synchronizers.
 702      *
 703      * @return an array of the {@link ThreadInfo} objects, each containing
 704      * information about a thread whose ID is in the corresponding
 705      * element of the input array of IDs.
 706      *
 707      * @throws SecurityException if a security manager
 708      *         exists and the caller does not have
 709      *         ManagementPermission("monitor").
 710      * @throws UnsupportedOperationException
 711      *         <ul>
 712      *           <li>if {@code lockedMonitors} is {@code true} but
 713      *               the Java virtual machine does not support monitoring
 714      *               of {@linkplain #isObjectMonitorUsageSupported
 715      *               object monitor usage}; or</li>
 716      *           <li>if {@code lockedSynchronizers} is {@code true} but
 717      *               the Java virtual machine does not support monitoring
 718      *               of {@linkplain #isSynchronizerUsageSupported
 719      *               ownable synchronizer usage}.</li>
 720      *         </ul>
 721      *
 722      * @see #isObjectMonitorUsageSupported
 723      * @see #isSynchronizerUsageSupported
 724      *
 725      * @since 1.6
 726      */
 727     public ThreadInfo[] getThreadInfo(long[] ids, boolean lockedMonitors,
 728                                       boolean lockedSynchronizers);
 729 
 730     /**


 777      * <b>MBeanServer access</b>:<br>
 778      * The mapped type of {@code ThreadInfo} is
 779      * {@code CompositeData} with attributes as specified in the
 780      * {@link ThreadInfo#from ThreadInfo.from} method.
 781      *
 782      * @implSpec The default implementation throws
 783      * {@code UnsupportedOperationException}.
 784      *
 785      * @param  ids an array of thread IDs.
 786      * @param  lockedMonitors if {@code true}, retrieves all locked monitors.
 787      * @param  lockedSynchronizers if {@code true}, retrieves all locked
 788      *             ownable synchronizers.
 789      * @param  maxDepth indicates the maximum number of
 790      * {@link StackTraceElement} to be retrieved from the stack trace.
 791      *
 792      * @return an array of the {@link ThreadInfo} objects, each containing
 793      * information about a thread whose ID is in the corresponding
 794      * element of the input array of IDs.
 795      *
 796      * @throws IllegalArgumentException if {@code maxDepth} is negative.
 797      * @throws SecurityException if a security manager
 798      *         exists and the caller does not have
 799      *         ManagementPermission("monitor").
 800      * @throws UnsupportedOperationException
 801      *         <ul>
 802      *           <li>if {@code lockedMonitors} is {@code true} but
 803      *               the Java virtual machine does not support monitoring
 804      *               of {@linkplain #isObjectMonitorUsageSupported
 805      *               object monitor usage}; or</li>
 806      *           <li>if {@code lockedSynchronizers} is {@code true} but
 807      *               the Java virtual machine does not support monitoring
 808      *               of {@linkplain #isSynchronizerUsageSupported
 809      *               ownable synchronizer usage}.</li>
 810      *         </ul>
 811      *
 812      * @see #isObjectMonitorUsageSupported
 813      * @see #isSynchronizerUsageSupported
 814      *
 815      * @since 10
 816      */
 817 
 818     public default ThreadInfo[] getThreadInfo(long[] ids, boolean lockedMonitors,
 819                                               boolean lockedSynchronizers, int maxDepth) {
 820         throw new UnsupportedOperationException();
 821     }
 822 
 823     /**
 824      * Returns the thread info for all live threads with stack trace
 825      * and synchronization information.
 826      * This is equivalent to calling:
 827      * <blockquote>
 828      * {@link #dumpAllThreads(boolean, boolean, int)
 829      * dumpAllThreads(lockedMonitors, lockedSynchronizers, Integer.MAX_VALUE)}
 830      * </blockquote>
 831      *
 832      * @param  lockedMonitors if {@code true}, dump all locked monitors.
 833      * @param  lockedSynchronizers if {@code true}, dump all locked
 834      *             ownable synchronizers.
 835      *
 836      * @return an array of {@link ThreadInfo} for all live threads.
 837      *
 838      * @throws SecurityException if a security manager
 839      *         exists and the caller does not have
 840      *         ManagementPermission("monitor").
 841      * @throws UnsupportedOperationException
 842      *         <ul>
 843      *           <li>if {@code lockedMonitors} is {@code true} but
 844      *               the Java virtual machine does not support monitoring
 845      *               of {@linkplain #isObjectMonitorUsageSupported
 846      *               object monitor usage}; or</li>
 847      *           <li>if {@code lockedSynchronizers} is {@code true} but
 848      *               the Java virtual machine does not support monitoring
 849      *               of {@linkplain #isSynchronizerUsageSupported
 850      *               ownable synchronizer usage}.</li>
 851      *         </ul>
 852      *
 853      * @see #isObjectMonitorUsageSupported
 854      * @see #isSynchronizerUsageSupported
 855      *
 856      * @since 1.6
 857      */
 858     public ThreadInfo[] dumpAllThreads(boolean lockedMonitors, boolean lockedSynchronizers);
 859 
 860 
 861     /**


 867      * Some threads included in the returned array
 868      * may have been terminated when this method returns.
 869      *
 870      * <p>
 871      * This method returns an array of {@link ThreadInfo} objects
 872      * as specified in the {@link #getThreadInfo(long[], boolean, boolean, int)}
 873      * method.
 874      *
 875      * @implSpec The default implementation throws
 876      * {@code UnsupportedOperationException}.
 877      *
 878      * @param  lockedMonitors if {@code true}, dump all locked monitors.
 879      * @param  lockedSynchronizers if {@code true}, dump all locked
 880      *             ownable synchronizers.
 881      * @param  maxDepth indicates the maximum number of
 882      * {@link StackTraceElement} to be retrieved from the stack trace.
 883      *
 884      * @return an array of {@link ThreadInfo} for all live threads.
 885      *
 886      * @throws IllegalArgumentException if {@code maxDepth} is negative.
 887      * @throws SecurityException if a security manager
 888      *         exists and the caller does not have
 889      *         ManagementPermission("monitor").
 890      * @throws UnsupportedOperationException
 891      *         <ul>
 892      *           <li>if {@code lockedMonitors} is {@code true} but
 893      *               the Java virtual machine does not support monitoring
 894      *               of {@linkplain #isObjectMonitorUsageSupported
 895      *               object monitor usage}; or</li>
 896      *           <li>if {@code lockedSynchronizers} is {@code true} but
 897      *               the Java virtual machine does not support monitoring
 898      *               of {@linkplain #isSynchronizerUsageSupported
 899      *               ownable synchronizer usage}.</li>
 900      *         </ul>
 901      *
 902      * @see #isObjectMonitorUsageSupported
 903      * @see #isSynchronizerUsageSupported
 904      *
 905      * @since 10
 906      */
 907     public default ThreadInfo[] dumpAllThreads(boolean lockedMonitors,
 908                                                boolean lockedSynchronizers, int maxDepth) {
 909         throw new UnsupportedOperationException();
 910     }
< prev index next >