Package Name: java.net.socketoutputstream

Return to: Package List


with java.io.FileOutputStream; use java.io.FileOutputStream;

package java.net.SocketOutputStream is
    type SocketOutputStream_Obj is new FileOutputStream_Obj with null record;

    type SocketOutputStream_Ptr is access all SocketOutputStream_Obj'Class;
    procedure write(Obj : access SocketOutputStream_Obj;

        b : Integer);
    procedure write(Obj : access SocketOutputStream_Obj;

        b : String);
    procedure write(Obj : access SocketOutputStream_Obj;
        b : String;
        off : Integer;

        len : Integer);

    procedure close(Obj : access SocketOutputStream_Obj);
    pragma Import(Java, close);


    pragma Import(Java, write);
end java.net.SocketOutputStream;