Guest User

Untitled

a guest
Jun 20th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. class AyxPlugin:
  2. def pi_add_incoming_connection(self, str_type: str, str_name: str) -> object:
  3. self.input = IncomingInterface(self)
  4. return self.input
  5.  
  6. def pi_add_outgoing_connection(self, str_name: str) -> bool:
  7. return True
  8.  
  9. def pi_push_all_records(self, n_record_limit: int) -> bool:
  10. self.alteryx_engine.output_message(self.n_tool_id, Sdk.EngineMessageType.error, 'Missing Incoming Connection.')
  11. return False
  12.  
  13. def pi_close(self, b_has_errors: bool):
  14. self.MatchOutput.assert_close()
  15. self.NoMatchOutput.assert_close()
Add Comment
Please, Sign In to add comment