Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6ee1cb1d authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add message id to interface"

parents efb5f951 1ae877d0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -67,6 +67,7 @@ interface IAccessor {
     *     to get shared buffers from the buffer pool.
     * @return connectionId Id of IConnection. The Id identifies
     *     sender and receiver in FMQ messages during buffer transfer.
     * @return msgId Id of the most recent message from buffer pool.
     * @return toFmqDesc FMQ descriptor. The descriptor is used to
     *     post buffer status messages.
     * @return fromFmqDesc FMQ descriptor. The descriptor is used to
@@ -75,6 +76,7 @@ interface IAccessor {
    connect(IObserver observer)
        generates (ResultStatus status, IConnection connection,
                   int64_t connectionId,
                   uint32_t msgId,
                   fmq_sync<BufferStatusMessage> toFmqDesc,
                   fmq_unsync<BufferInvalidationMessage> fromFmqDesc);
};
+2 −1
Original line number Diff line number Diff line
@@ -29,6 +29,7 @@ interface IObserver {
     * message.
     *
     * @param connectionId the connection Id of the specific buffer pool client
     * @param msgId Id of the most recent message
     */
    oneway onMessage(int64_t connectionId);
    oneway onMessage(int64_t connectionId, uint32_t msgId);
};