hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface representing a datagram socket that extends multiple socket-related interfaces.

    interface ISGRODataGramSocket {
        Close(): any;
        DropGroup(ipAddress: any): boolean;
        eAgain(): boolean;
        eAlready(): boolean;
        eBadAddr(): boolean;
        eDestAddrReq(): boolean;
        eHostUnreach(): boolean;
        eInProgress(): boolean;
        eInvalid(): boolean;
        eOK(): boolean;
        eSuccess(): boolean;
        eWouldBlock(): boolean;
        GetAddress(): any;
        GetBroadcast(): boolean;
        GetCountRcvBuf(): number;
        GetCountSendBuf(): number;
        GetID(): number;
        GetMulticastLoop(): boolean;
        GetMulticastTTL(): number;
        GetOOBInline(): boolean;
        GetRcvBuf(): number;
        GetReceivedFromAddress(): any;
        GetReceiveTimeout(): number;
        GetReuseAddr(): boolean;
        GetSendBuf(): number;
        GetSendTimeout(): number;
        GetSendToAddress(): any;
        GetTTL(): number;
        IsException(): boolean;
        IsReadable(): boolean;
        IsWritable(): boolean;
        JoinGroup(ipAddress: any): boolean;
        NotifyException(enable: boolean): any;
        NotifyReadable(enable: boolean): any;
        NotifyWritable(enable: boolean): any;
        Receive(data: any, startIndex: number, length: number): number;
        ReceiveStr(length: number): string;
        Send(data: any, startIndex: number, length: number): number;
        SendStr(data: string): number;
        SetAddress(sockAddr: any): boolean;
        SetBroadcast(enable: boolean): boolean;
        SetMulticastLoop(enable: boolean): boolean;
        SetMulticastTTL(ttl: number): boolean;
        SetOOBInline(inline: boolean): boolean;
        SetRcvBuf(size: number): boolean;
        SetReceiveTimeout(timeout: number): boolean;
        SetReuseAddr(reuse: boolean): any;
        SetSendBuf(size: number): boolean;
        SetSendTimeout(timeout: number): boolean;
        SetSendToAddress(sockAddr: any): boolean;
        SetTTL(ttl: number): boolean;
        Status(): number;
    }

    Hierarchy (View Summary)

    Index

    Methods