Example usage for com.fasterxml.jackson.dataformat.smile SmileConstants TOKEN_LITERAL_START_ARRAY

List of usage examples for com.fasterxml.jackson.dataformat.smile SmileConstants TOKEN_LITERAL_START_ARRAY

Introduction

In this page you can find the example usage for com.fasterxml.jackson.dataformat.smile SmileConstants TOKEN_LITERAL_START_ARRAY.

Prototype

byte TOKEN_LITERAL_START_ARRAY

To view the source code for com.fasterxml.jackson.dataformat.smile SmileConstants TOKEN_LITERAL_START_ARRAY.

Click Source Link

Usage

From source file:org.killbill.billing.plugin.meter.timeline.persistent.StreamyBytesPersistentOutputStream.java

public void reset() {
    inputBuffer.clear();/*from ww w  .jav  a  2 s.  c o  m*/
    try {
        write(SmileConstants.TOKEN_LITERAL_START_ARRAY);
    } catch (IOException e) {
        // Not sure how to recover?
    }
}