- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {FileOutputStream f =
File file;new FileOutputStream(file)
String name;new FileOutputStream(name)
File file;new FileOutputStream(file, true)
- Smart code suggestions by Codota
}
/** * Set the value for a counter. * * @param counter the name of the counter to set * @param value the value to set * @param timestamp timestamp of the entry * @param tags optional list of tags associated with the counter. See {@link TimeseriesTable} class description * for more details. */ @WriteOnly public void set(byte[] counter, long value, long timestamp, byte[]... tags) { write(counter, Bytes.toBytes(value), timestamp, tags); }