NodeOPCUA API Documentation
    Preparing search index...
    interface IBasicSessionRead {
        read(
            nodeToRead: ReadValueIdOptions,
            maxAge?: number,
        ): Promise<DataValue>;
        read(
            nodesToRead: ReadValueIdOptions[],
            maxAge?: number,
        ): Promise<DataValue[]>;
        read(
            nodeToRead: ReadValueIdOptions,
            maxAge: number,
            callback: ResponseCallback<DataValue>,
        ): void;
        read(
            nodesToRead: ReadValueIdOptions[],
            maxAge: number,
            callback: ResponseCallback<DataValue[]>,
        ): void;
        read(
            nodeToRead: ReadValueIdOptions,
            callback: ResponseCallback<DataValue>,
        ): void;
        read(
            nodesToRead: ReadValueIdOptions[],
            callback: ResponseCallback<DataValue[]>,
        ): void;
    }

    Hierarchy (View Summary)

    Index

    Methods

    Methods