Interface IProcedure


public interface IProcedure
Deprecated.
Use Task or DistributedTask instead.
The IProcedure interface should be implemented when using the JDBC API to invoke Java classes business logic at the space side. The IProcedure interface includes the execute method that returns ResultEntry
  • Method Summary

    Modifier and Type
    Method
    Description
    execute(Connection connection, IJSpace space, ArrayList paramList)
    Deprecated.
    The execute method should include the business logic to be invoked at the server side
  • Method Details

    • execute

      ResultEntry execute(Connection connection, IJSpace space, ArrayList paramList) throws SQLException
      Deprecated.
      The execute method should include the business logic to be invoked at the server side
      Parameters:
      connection - JDBC Connection
      space - The embedded space proxy
      paramList - Parameters to pass to the stored procedure
      Returns:
      Returns result set into the form of ResultEntry.
      Throws:
      SQLException