View Javadoc
1   /*
2    * ====================================================================
3    * Licensed to the Apache Software Foundation (ASF) under one
4    * or more contributor license agreements.  See the NOTICE file
5    * distributed with this work for additional information
6    * regarding copyright ownership.  The ASF licenses this file
7    * to you under the Apache License, Version 2.0 (the
8    * "License"); you may not use this file except in compliance
9    * with the License.  You may obtain a copy of the License at
10   *
11   *   http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing,
14   * software distributed under the License is distributed on an
15   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16   * KIND, either express or implied.  See the License for the
17   * specific language governing permissions and limitations
18   * under the License.
19   * ====================================================================
20   *
21   * This software consists of voluntary contributions made by many
22   * individuals on behalf of the Apache Software Foundation.  For more
23   * information on the Apache Software Foundation, please see
24   * <http://www.apache.org/>.
25   *
26   */
27  
28  package org.apache.http.nio.params;
29  
30  /**
31   * Parameter names for I/O reactors.
32   *
33   * @since 4.0
34   *
35   * @deprecated (4.2) use {@link org.apache.http.impl.nio.reactor.IOReactorConfig}
36   */
37  @Deprecated
38  public interface NIOReactorPNames {
39  
40      /**
41       * Determines the size of the content input/output buffers used
42       * to buffer data while receiving or transmitting HTTP messages.
43       * <p>
44       * This parameter expects a value of type {@link Integer}.
45       * </p>
46       */
47      String CONTENT_BUFFER_SIZE = "http.nio.content-buffer-size";
48  
49      /**
50       * Determines the time interval in milliseconds at which the
51       * I/O reactor wakes up to check for timed out sessions and session requests.
52       * <p>
53       * This parameter expects a value of type {@link Long}.
54       * </p>
55       */
56      String SELECT_INTERVAL = "http.nio.select-interval";
57  
58      /**
59       * Determines the grace period the I/O reactors are expected to block
60       * waiting for individual worker threads to terminate cleanly.
61       * <p>
62       * This parameter expects a value of type {@link Long}.
63       * </p>
64       */
65      String GRACE_PERIOD = "http.nio.grace-period";
66  
67      /**
68       * Determines whether interestOps() queueing is enabled for the I/O reactors.
69       * <p>
70       * This parameter expects a value of type {@link Boolean}.
71       * </p>
72       *
73       * @since 4.1
74       */
75      String INTEREST_OPS_QUEUEING = "http.nio.interest-ops-queueing";
76  
77  }