java.lang.Object
org.gridgain.ignite.migrationtools.adapter.internal.ProxyUtils

public class ProxyUtils extends Object
Utility to create proxies for the ignite clients.
  • Method Summary

    Modifier and Type
    Method
    Description
    static org.apache.ignite.client.IgniteClient
    createProxy(org.apache.ignite.client.IgniteClientProxy adapter)
    Proxies method calls from IgniteClient to an IgniteProxy (Adapter implementation).
    static org.apache.ignite.Ignite
    createProxy(org.apache.ignite.IgniteProxy adapter)
    Proxies method calls from Ignite to an IgniteProxy (Adapter implementation).

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • createProxy

      public static org.apache.ignite.Ignite createProxy(org.apache.ignite.IgniteProxy adapter)
      Proxies method calls from Ignite to an IgniteProxy (Adapter implementation).
      Parameters:
      adapter - The adapter implementation.
      Returns:
      Ignite.
    • createProxy

      public static org.apache.ignite.client.IgniteClient createProxy(org.apache.ignite.client.IgniteClientProxy adapter)
      Proxies method calls from IgniteClient to an IgniteProxy (Adapter implementation).
      Parameters:
      adapter - The adapter implementation.
      Returns:
      IgniteClient.