congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
TextValueSerializer.create
Code IndexAdd Tabnine to your IDE (free)

How to use
create
method
in
kieker.common.record.io.TextValueSerializer

Best Java code snippets using kieker.common.record.io.TextValueSerializer.create (Showing top 3 results out of 315)

origin: kieker-monitoring/kieker

/**
 * Create a text log stream handler.
 *
 * @param flushLogFile
 *            activate flush after every record
 * @param bufferSize
 *            write buffer size
 * @param charset
 *            charset
 * @param compressionFilter
 *            compression filter
 * @param writerRegistry
 *            dummy writer registry, not used in the text log
 */
public TextLogStreamHandler(final Boolean flushLogFile, final Integer bufferSize, final Charset charset, final ICompressionFilter compressionFilter,
    final WriterRegistry writerRegistry) { // NOPMD writerRegistry is API and not used for text serialization
  super(flushLogFile, bufferSize, charset, compressionFilter, writerRegistry);
  this.buffer = CharBuffer.allocate(bufferSize);
  this.serializer = TextValueSerializer.create(this.buffer);
  this.extension = FSUtil.DAT_FILE_EXTENSION;
}
origin: net.kieker-monitoring/kieker

public AsciiFileWriter(final Configuration configuration) {
  super(configuration);
  this.serializer = TextValueSerializer.create(this.buffer);
origin: kieker-monitoring/kieker

public void testMaxLogSize() throws Exception {
  final CharBuffer charBuffer = CharBuffer.allocate(1024);
  final IValueSerializer serializer = TextValueSerializer.create(charBuffer);
  final EmptyRecord record = new EmptyRecord();
  record.serialize(serializer);
kieker.common.record.ioTextValueSerializercreate

Javadoc

Factory method to create a text value serializer.

Popular methods of TextValueSerializer

  • <init>

Popular in Java

  • Finding current android device location
  • compareTo (BigDecimal)
  • findViewById (Activity)
  • getSystemService (Context)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • JTable (javax.swing)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Top 17 Free Sublime Text Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now