All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebeaninternal.api.SpiProfileHandler Maven / Gradle / Ivy

There is a newer version: 15.6.0
Show newest version
package io.ebeaninternal.api;

import io.ebeaninternal.server.transaction.ProfileStream;
import io.ebeaninternal.server.transaction.TransactionProfile;

/**
 * Handle the logging or processing of transaction profiling information that is collected.
 */
public interface SpiProfileHandler {

  /**
   * Process the collected transaction profiling information.
   * 

* Note that profileId and totalMicros are part of the profilingData but passed separately as the handler * may filter what it processed based on this information (ignore short transactions, only process specific * profileId transactions etc). *

* * @param transactionProfile The transaction profile that has just been collected */ void collectTransactionProfile(TransactionProfile transactionProfile); /** * Create a profiling stream if we are profiling this transaction. * Return null if we are not profiling this transaction. * * @param profileId The transaction profileId */ ProfileStream createProfileStream(int profileId); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy