Skip to content
This repository has been archived by the owner on May 26, 2020. It is now read-only.

Commit

Permalink
Merge 5e950d7 into 81f82bd
Browse files Browse the repository at this point in the history
  • Loading branch information
allanmckenzie committed Apr 16, 2019
2 parents 81f82bd + 5e950d7 commit 259a26b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
public interface PublishedEventSourceTransformation {

/**
* Truncates the Published event log
* Deletes all PublishedEvents in the published_event table
*/
void truncate() throws PublishedEventException;
void deleteAllPublishedEvents() throws PublishedEventException;

/**
* Populates Published event log
* Populates PublishedEvents into the published_event table
*/
void populate() throws PublishedEventException;
void populatePublishedEvents() throws PublishedEventException;

}

0 comments on commit 259a26b

Please sign in to comment.