Module ATDGenerated.Java_profiler_samples_j

type sampled_method = Java_profiler_samples_t.sampled_method = {
  1. classname : string;
  2. methodname : string;
  3. signature : string;
}
type java_profiler_sample = Java_profiler_samples_t.java_profiler_sample = {
  1. test : string;
  2. methods : sampled_method list;
}
val write_sampled_method : Stdlib.Buffer.t -> sampled_method -> unit

Output a JSON value of type sampled_method.

val string_of_sampled_method : ?len:int -> sampled_method -> string

Serialize a value of type sampled_method into a JSON string.

  • parameter len

    specifies the initial length of the buffer used internally. Default: 1024.

val read_sampled_method : Yojson.Safe.lexer_state -> Stdlib.Lexing.lexbuf -> sampled_method

Input JSON data of type sampled_method.

val sampled_method_of_string : string -> sampled_method

Deserialize JSON data of type sampled_method.

val write_java_profiler_sample : Stdlib.Buffer.t -> java_profiler_sample -> unit

Output a JSON value of type java_profiler_sample.

val string_of_java_profiler_sample : ?len:int -> java_profiler_sample -> string

Serialize a value of type java_profiler_sample into a JSON string.

  • parameter len

    specifies the initial length of the buffer used internally. Default: 1024.

val read_java_profiler_sample : Yojson.Safe.lexer_state -> Stdlib.Lexing.lexbuf -> java_profiler_sample

Input JSON data of type java_profiler_sample.

val java_profiler_sample_of_string : string -> java_profiler_sample

Deserialize JSON data of type java_profiler_sample.

val write_java_profiler_samples : Stdlib.Buffer.t -> java_profiler_samples -> unit

Output a JSON value of type java_profiler_samples.

val string_of_java_profiler_samples : ?len:int -> java_profiler_samples -> string

Serialize a value of type java_profiler_samples into a JSON string.

  • parameter len

    specifies the initial length of the buffer used internally. Default: 1024.

val read_java_profiler_samples : Yojson.Safe.lexer_state -> Stdlib.Lexing.lexbuf -> java_profiler_samples

Input JSON data of type java_profiler_samples.

val java_profiler_samples_of_string : string -> java_profiler_samples

Deserialize JSON data of type java_profiler_samples.