Interface IgniteClient

All Superinterfaces:
AutoCloseable, org.apache.ignite.Ignite

public interface IgniteClient extends org.apache.ignite.Ignite, AutoCloseable
Ignite client entry point.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static class 
    Client builder.
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets a new client builder.
    void
     
    Gets the configuration.
    List<org.apache.ignite.network.ClusterNode>
    Gets active client connections.

    Methods inherited from interface org.apache.ignite.Ignite

    caches, catalog, cluster, clusterNodes, clusterNodesAsync, compute, name, sql, structures, tables, transactions
  • Method Details

    • configuration

      IgniteClientConfiguration configuration()
      Gets the configuration.
      Returns:
      Configuration.
    • connections

      List<org.apache.ignite.network.ClusterNode> connections()
      Gets active client connections.
      Returns:
      List of connected cluster nodes.
    • builder

      static IgniteClient.Builder builder()
      Gets a new client builder.
      Returns:
      New client builder.
    • close

      void close()
      Specified by:
      close in interface AutoCloseable