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

org.telegram.api.messages.TLMessages Maven / Gradle / Ivy

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

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

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

/**
 * The type TL messages.
 */
public class TLMessages extends TLAbsMessages {
    /**
     * The constant CLASS_ID.
     */
    public static final int CLASS_ID = 0x8c718e87;

    /**
     * Instantiates a new TL messages.
     */
    public TLMessages() {
        super();
    }

    public int getClassId() {
        return CLASS_ID;
    }

    public void serializeBody(OutputStream stream)
            throws IOException {
        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.messages = (TLVector) StreamingUtils.readTLVector(stream, context);
        this.chats = (TLVector) StreamingUtils.readTLVector(stream, context);
        this.users = (TLVector) StreamingUtils.readTLVector(stream, context);
    }

    public String toString() {
        return "messages.messages#8c718e87";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy