ao-js-sdk - v0.0.9
    Preparing search index...

    Interface IReactiveMessageService

    Reactive interface for message service operations that provides RxJS Observable streams

    interface IReactiveMessageService {
        getLatestMessage(
            params: GetAllMessagesParams,
        ): Observable<undefined | Partial<FullArweaveTransaction>>;
        streamAllMessages(
            params: GetAllMessagesParams,
        ): Observable<Partial<FullArweaveTransaction>[]>;
        streamAllMessagesSentBy(
            params: GetAllMessagesBySenderParams,
        ): Observable<Partial<FullArweaveTransaction>[]>;
    }

    Implemented by

    Index

    Methods