33343536373839
* @param initialSize an int specifying the initial buffer size. * @exception IllegalArgumentException if initialSize is negative */ public SerializeWriter(){ theCodedOutputStream = new CodedOutputStream( new BufferOutputStream(1024 * 2)); }