All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.telegram.api.messages.dialogs.TLDialogs Maven / Gradle / Ivy

There is a newer version: 66.2
Show newest version
package org.telegram.api.messages.dialogs;

import org.telegram.api.chat.TLAbsChat;
import org.telegram.api.dialog.TLDialog;
import org.telegram.api.message.TLAbsMessage;
import org.telegram.api.user.TLAbsUser;
import org.telegram.tl.StreamingUtils;
import org.telegram.tl.TLContext;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

/**
 * The type TL dialogs.
 */
public class TLDialogs extends TLAbsDialogs {
    /**
     * The constant CLASS_ID.
     */
    public static final int CLASS_ID = 0x15ba6c40;

    /**
     * Instantiates a new TL dialogs.
     */
    public TLDialogs() {
        super();
    }

    public int getClassId() {
        return CLASS_ID;
    }

    public void serializeBody(OutputStream stream)
            throws IOException {
        StreamingUtils.writeTLVector(this.dialogs, stream);
        StreamingUtils.writeTLVector(this.messages, stream);
        StreamingUtils.writeTLVector(this.chats, stream);
        StreamingUtils.writeTLVector(this.users, stream);
    }

    public void deserializeBody(InputStream stream, TLContext context)
            throws IOException {
        this.dialogs = StreamingUtils.readTLVector(stream, context, TLDialog.class);
        this.messages = StreamingUtils.readTLVector(stream, context, TLAbsMessage.class);
        this.chats = StreamingUtils.readTLVector(stream, context, TLAbsChat.class);
        this.users = StreamingUtils.readTLVector(stream, context, TLAbsUser.class);
    }

    public String toString() {
        return "messages.dialogs#15ba6c40";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy