Interface PostUploadHook

All Known Implementing Classes:
PostUploadHookChain

public interface PostUploadHook
Hook invoked by UploadPack after the pack has been uploaded.

Implementors of the interface are responsible for associating the current thread to a particular connection, if they need to also include connection information. One method is to use a ThreadLocal to remember the connection information before invoking UploadPack.

Since:
4.1
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final PostUploadHook
    A simple no-op hook.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Notifies the hook that a pack has been sent.
  • Field Details

  • Method Details

    • onPostUpload

      void onPostUpload(PackStatistics stats)
      Notifies the hook that a pack has been sent.
      Parameters:
      stats - the statistics gathered by PackWriter for the uploaded pack