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

com.github.moaxcp.x11client.protocol.randr.LeaseNotify Maven / Gradle / Ivy

There is a newer version: 0.18.2
Show newest version
package com.github.moaxcp.x11client.protocol.randr;

import com.github.moaxcp.x11client.protocol.X11Input;
import com.github.moaxcp.x11client.protocol.X11Output;
import com.github.moaxcp.x11client.protocol.XStruct;
import java.io.IOException;
import java.lang.Override;
import lombok.Builder;
import lombok.Value;

@Value
@Builder
public class LeaseNotify implements NotifyDataUnion, XStruct {
  private int timestamp;

  private int window;

  private int lease;

  private byte created;

  public static LeaseNotify readLeaseNotify(X11Input in) throws IOException {
    int timestamp = in.readCard32();
    int window = in.readCard32();
    int lease = in.readCard32();
    byte created = in.readCard8();
    in.readPad(15);
    LeaseNotify.LeaseNotifyBuilder javaBuilder = LeaseNotify.builder();
    javaBuilder.timestamp(timestamp);
    javaBuilder.window(window);
    javaBuilder.lease(lease);
    javaBuilder.created(created);
    return javaBuilder.build();
  }

  @Override
  public void write(X11Output out) throws IOException {
    out.writeCard32(timestamp);
    out.writeCard32(window);
    out.writeCard32(lease);
    out.writeCard8(created);
    out.writePad(15);
  }

  @Override
  public int getSize() {
    return 28;
  }

  public static class LeaseNotifyBuilder {
    public int getSize() {
      return 28;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy