requesthandler.java

来自「java jdk 1.4的源码」· Java 代码 · 共 30 行

JAVA
30
字号
/* * @(#)RequestHandler.java	1.20 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.core;import com.sun.corba.se.internal.ior.ObjectKey;/** * A RequestHandler is responsible for finding the appropriate * server subcontracts to dispatch the incoming request to. There * exists one RequestDispatcher for a GIOPServer. */public interface RequestHandler {    /**     * Process this request and return the response.     */    public ServerResponse process(ServerRequest request)	throws Throwable;    /**     * Process a locate request.     */    public IOR locate(ObjectKey key);}

⌨️ 快捷键说明

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