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

Commit 6f56fc13 authored by Sahin Caliskan's avatar Sahin Caliskan Committed by android-build-merger
Browse files

Merge "Unhide RcsMessageStore APIs" am: 231a9cb7 am: 6dbf0e96

am: 169cac14

Change-Id: I91b24f5b1b7c387077bdb8eac8c3841a1bc63f91
parents d06756ce 169cac14
Loading
Loading
Loading
Loading
+477 −0

File changed.

Preview size limit exceeded, changes collapsed.

+0 −2
Original line number Diff line number Diff line
@@ -22,8 +22,6 @@ import android.annotation.WorkerThread;
 * Rcs1To1Thread represents a single RCS conversation thread with a total of two
 * {@link RcsParticipant}s. Please see Section 5 (1-to-1 Messaging) - GSMA RCC.71 (RCS Universal
 * Profile Service Definition Document)
 *
 * @hide - TODO: make public
 */
public class Rcs1To1Thread extends RcsThread {
    private int mThreadId;
+0 −2
Original line number Diff line number Diff line
@@ -19,8 +19,6 @@ import android.os.Parcel;

/**
 * The base class for events that can happen on {@link RcsParticipant}s and {@link RcsThread}s.
 *
 * @hide - TODO: make public
 */
public abstract class RcsEvent {
    /**
+2 −4
Original line number Diff line number Diff line
@@ -37,8 +37,6 @@ import java.security.InvalidParameterException;
 * The parameters to pass into
 * {@link RcsMessageStore#getRcsEvents(RcsEventQueryParams)} in order to select a
 * subset of {@link RcsEvent}s present in the message store.
 *
 * @hide - TODO: make public
 */
public final class RcsEventQueryParams implements Parcelable {
    /**
@@ -152,8 +150,8 @@ public final class RcsEventQueryParams implements Parcelable {
    }

    /**
     * @return Returns the type of {@link RcsEvent}s that this {@link RcsEventQueryParams} is
     * set to query for.
     * @return Returns the number of {@link RcsEvent}s to be returned from the query. A value of
     * 0 means there is no set limit.
     */
    public int getLimit() {
        return mLimit;
+0 −2
Original line number Diff line number Diff line
@@ -25,8 +25,6 @@ import java.util.List;
 * The result of a {@link RcsMessageStore#getRcsEvents(RcsEventQueryParams)}
 * call. This class allows getting the token for querying the next batch of events in order to
 * prevent handling large amounts of data at once.
 *
 * @hide - TODO: make public
 */
public final class RcsEventQueryResult implements Parcelable {
    private RcsQueryContinuationToken mContinuationToken;
Loading