Java Code Examples for com.sun.corba.se.impl.protocol.giopmsgheaders.MessageBase#createCancelRequest()

The following examples show how to use com.sun.corba.se.impl.protocol.giopmsgheaders.MessageBase#createCancelRequest() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SocketOrChannelConnectionImpl.java    From jdk1.8-source-analysis with Apache License 2.0 5 votes vote down vote up
/**
 * Send a CancelRequest message. This does not lock the connection, so the
 * caller needs to ensure this method is called appropriately.
 * @exception IOException - could be due to abortive connection closure.
 */
public void sendCancelRequest(GIOPVersion giopVersion, int requestId)
    throws IOException
{

    Message msg = MessageBase.createCancelRequest(giopVersion, requestId);
    sendHelper(giopVersion, msg);
}
 
Example 2
Source File: SocketOrChannelConnectionImpl.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Send a CancelRequest message. This does not lock the connection, so the
 * caller needs to ensure this method is called appropriately.
 * @exception IOException - could be due to abortive connection closure.
 */
public void sendCancelRequest(GIOPVersion giopVersion, int requestId)
    throws IOException
{

    Message msg = MessageBase.createCancelRequest(giopVersion, requestId);
    sendHelper(giopVersion, msg);
}
 
Example 3
Source File: SocketOrChannelConnectionImpl.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Send a CancelRequest message. This does not lock the connection, so the
 * caller needs to ensure this method is called appropriately.
 * @exception IOException - could be due to abortive connection closure.
 */
public void sendCancelRequest(GIOPVersion giopVersion, int requestId)
    throws IOException
{

    Message msg = MessageBase.createCancelRequest(giopVersion, requestId);
    sendHelper(giopVersion, msg);
}
 
Example 4
Source File: SocketOrChannelConnectionImpl.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
/**
 * Send a CancelRequest message. This does not lock the connection, so the
 * caller needs to ensure this method is called appropriately.
 * @exception IOException - could be due to abortive connection closure.
 */
public void sendCancelRequest(GIOPVersion giopVersion, int requestId)
    throws IOException
{

    Message msg = MessageBase.createCancelRequest(giopVersion, requestId);
    sendHelper(giopVersion, msg);
}
 
Example 5
Source File: SocketOrChannelConnectionImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Send a CancelRequest message. This does not lock the connection, so the
 * caller needs to ensure this method is called appropriately.
 * @exception IOException - could be due to abortive connection closure.
 */
public void sendCancelRequest(GIOPVersion giopVersion, int requestId)
    throws IOException
{

    Message msg = MessageBase.createCancelRequest(giopVersion, requestId);
    sendHelper(giopVersion, msg);
}
 
Example 6
Source File: SocketOrChannelConnectionImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Send a CancelRequest message. This does not lock the connection, so the
 * caller needs to ensure this method is called appropriately.
 * @exception IOException - could be due to abortive connection closure.
 */
public void sendCancelRequest(GIOPVersion giopVersion, int requestId)
    throws IOException
{

    Message msg = MessageBase.createCancelRequest(giopVersion, requestId);
    sendHelper(giopVersion, msg);
}
 
Example 7
Source File: SocketOrChannelConnectionImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Send a CancelRequest message. This does not lock the connection, so the
 * caller needs to ensure this method is called appropriately.
 * @exception IOException - could be due to abortive connection closure.
 */
public void sendCancelRequest(GIOPVersion giopVersion, int requestId)
    throws IOException
{

    Message msg = MessageBase.createCancelRequest(giopVersion, requestId);
    sendHelper(giopVersion, msg);
}
 
Example 8
Source File: SocketOrChannelConnectionImpl.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Send a CancelRequest message. This does not lock the connection, so the
 * caller needs to ensure this method is called appropriately.
 * @exception IOException - could be due to abortive connection closure.
 */
public void sendCancelRequest(GIOPVersion giopVersion, int requestId)
    throws IOException
{

    Message msg = MessageBase.createCancelRequest(giopVersion, requestId);
    sendHelper(giopVersion, msg);
}
 
Example 9
Source File: SocketOrChannelConnectionImpl.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Send a CancelRequest message. This does not lock the connection, so the
 * caller needs to ensure this method is called appropriately.
 * @exception IOException - could be due to abortive connection closure.
 */
public void sendCancelRequest(GIOPVersion giopVersion, int requestId)
    throws IOException
{

    Message msg = MessageBase.createCancelRequest(giopVersion, requestId);
    sendHelper(giopVersion, msg);
}
 
Example 10
Source File: SocketOrChannelConnectionImpl.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Send a CancelRequest message. This does not lock the connection, so the
 * caller needs to ensure this method is called appropriately.
 * @exception IOException - could be due to abortive connection closure.
 */
public void sendCancelRequest(GIOPVersion giopVersion, int requestId)
    throws IOException
{

    Message msg = MessageBase.createCancelRequest(giopVersion, requestId);
    sendHelper(giopVersion, msg);
}