⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 work.java

📁 java jdk 1.4的源码
💻 JAVA
字号:
/* * @(#)Work.java	1.3 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.internal.orbutil;/** * Defines the methods necessary for a subclass to * be processed by a thread in a ThreadPool.  Implementing * classes define the actual work to do. */public interface Work{    /**     * Get the name for this type of work.  The thread that     * does this type of Work will set it's name to what is     * returned by this method.  This is only useful for     * debugging (so you can easily see what type of thread     * it is).     */    String getName();    /**     * Do the actual work.  This should perform all its own     * error handling.  Any Exceptions that escape will be     * ignored.     */    void process();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -