Interface Synchronizer<T extends Synchronizable>

Type Parameters:
T - Represents the type of objects that can be synchronized.

public interface Synchronizer<T extends Synchronizable>
This interface defines a synchronizer that can synchronize two instances of a Synchronizable type.
Version:
1.0
Author:
Dr. Jalal H. Kiswani
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    synchronize(T source, T target)
    This method synchronizes the data from the source object to the target object.
  • Method Details

    • synchronize

      void synchronize(T source, T target)
      This method synchronizes the data from the source object to the target object.
      Parameters:
      source - Specifies the source object from which data will be synchronized.
      target - Specifies the target object to which data will be synchronized.