blob: 542f3f50a08fe1cdd3ef3b56a3fbe7430ddde485 [file] [log] [blame]
Mark Slee83c52a82006-06-07 06:51:18 +00001package com.facebook.thrift.protocol;
2
Mark Slee83c52a82006-06-07 06:51:18 +00003/**
4 * Helper class that encapsulates set metadata.
5 *
6 * @author Mark Slee <mcslee@facebook.com>
7 */
8public class TSet {
9 public TSet() {}
10
Mark Slee530fd662006-08-09 00:05:18 +000011 public TSet(byte t, int s) {
Mark Slee83c52a82006-06-07 06:51:18 +000012 elemType = t;
13 size = s;
14 }
15
Mark Slee530fd662006-08-09 00:05:18 +000016 public byte elemType = TType.STOP;
17 public int size = 0;
Mark Slee83c52a82006-06-07 06:51:18 +000018}