org.telegram.tl.TLGzipObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegramapi Show documentation
Show all versions of telegramapi Show documentation
Java library to create Telegram Clients
The newest version!
package org.telegram.tl;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import static org.telegram.tl.StreamingUtils.readTLBytes;
import static org.telegram.tl.StreamingUtils.writeTLBytes;
/**
* Basic class of gzipped object
*
* @author Ruben Bermudez
*/
public class TLGzipObject extends TLObject {
public static final int CLASS_ID = 0x3072CFA1;
private byte[] packedData;
public TLGzipObject(byte[] packedData) {
this.packedData = packedData;
}
public TLGzipObject() {
}
@Override
public int getClassId() {
return CLASS_ID;
}
public byte[] getPackedData() {
return this.packedData;
}
public void setPackedData(byte[] packedData) {
this.packedData = packedData;
}
@Override
public void serializeBody(OutputStream stream) throws IOException {
writeTLBytes(this.packedData, stream);
}
@Override
public void deserializeBody(InputStream stream, TLContext context) throws IOException {
this.packedData = readTLBytes(stream);
}
@Override
public String toString() {
return "gzip_packed#3072cfa1";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy