blob: e249f7152c7c3e1a7b5984db1d1e5443c4e79107 [file] [log] [blame]
package org.jetbrains.io.fastCgi;
import io.netty.buffer.ByteBuf;
public class FastCgiResponse {
private final int id;
private final ByteBuf data;
public FastCgiResponse(int id, ByteBuf data) {
this.id = id;
this.data = data;
}
public ByteBuf getData() {
return data;
}
public int getId() {
return id;
}
}