Package org.instancio

Interface OnCompleteCallback<T>

Type Parameters:
T - type handled by the callback

public interface OnCompleteCallback<T>
A callback that gets invoked after an object has been fully populated.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onComplete(T object)
    Method called after object has been populated.
  • Method Details

    • onComplete

      void onComplete(T object)
      Method called after object has been populated.
      Parameters:
      object - fully populated instance to call the callback on