• BlackBerry Dynamics
  • Runtime library for Android applications
  • 12.0.1.79
ConnectionReleaseTrigger Interface Reference

Interface for releasing a connection. More...

Inheritance diagram for ConnectionReleaseTrigger:
BasicManagedEntity EofSensorInputStream ManagedClientConnection AbstractClientConnAdapter AbstractPooledConnAdapter SingleClientConnManager.ConnAdapter BasicPooledConnAdapter

Description

This can be implemented by various "trigger" objects which are associated with a connection, for example a stream or an entity or the connection itself.
The methods in this interface can safely be called multiple times. The first invocation releases the connection, subsequent calls are ignored.

Author
Roland Weber
Version
Revision
672367
Since
4.0

Notice

The following notice applies to the original API on which this API is based, and to its documentation. The documentation of this API has been revised from the original.

/*
 * Copyright (C) 2006 The Android Open Source Project
 *
 * 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.
 */

Public Member Functions

void releaseConnection () throws IOException
 Releases the connection with the option of keep-alive. More...
 
void abortConnection () throws IOException
 Releases the connection without the option of keep-alive. More...
 

Member Function Documentation

◆ releaseConnection()

void releaseConnection ( ) throws IOException

This is a "graceful" release and may cause IO operations for consuming the remainder of a response entity. Use abortConnection for a hard release. The connection may be reused as specified by the duration.

Exceptions
IOExceptionin case of an IO problem. The connection will be released anyway.

Implemented in AbstractClientConnAdapter, EofSensorInputStream, and BasicManagedEntity.

◆ abortConnection()

void abortConnection ( ) throws IOException

This is a "hard" release that implies a shutdown of the connection. Use releaseConnection for a graceful release.

Exceptions
IOExceptionin case of an IO problem. The connection will be released anyway.

Implemented in AbstractClientConnAdapter, EofSensorInputStream, and BasicManagedEntity.