FileDocCategorySizeDatePackage
FragmentMessage_1_1.javaAPI DocJava SE 5 API1612Fri Aug 26 14:54:32 BST 2005com.sun.corba.se.impl.protocol.giopmsgheaders

FragmentMessage_1_1

public final class FragmentMessage_1_1 extends Message_1_1 implements FragmentMessage
This implements the GIOP 1.1 Fragment header.
author
Ram Jeyaraman 05/14/2000
version
1.0

Fields Summary
Constructors Summary
FragmentMessage_1_1()

FragmentMessage_1_1(Message_1_1 msg11)

        this.magic = msg11.magic;
        this.GIOP_version = msg11.GIOP_version;
        this.flags = msg11.flags;
        this.message_type = GIOPFragment;
        this.message_size = 0;
    
Methods Summary
public voidcallback(MessageHandler handler)

        handler.handleInput(this);
    
public intgetHeaderLength()

        return GIOPMessageHeaderLength;
    
public intgetRequestId()

        return -1; // 1.1 has no fragment header and so no request_id
    
public voidread(org.omg.CORBA.portable.InputStream istream)

        super.read(istream);
    
public voidwrite(org.omg.CORBA.portable.OutputStream ostream)

        super.write(ostream);