Interface GitHubEventFetchStrategy
-
public interface GitHubEventFetchStrategyAn abstraction that allows customization of how theEventsConsumerfetches GitHub events. The default strategy is to fetch events for the repository that was configured on the consumer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.egit.github.core.client.PageIterator<org.eclipse.egit.github.core.event.Event>fetchEvents(org.eclipse.egit.github.core.service.EventService eventService)Fetches GitHub events from theEventService.
-
-
-
Method Detail
-
fetchEvents
org.eclipse.egit.github.core.client.PageIterator<org.eclipse.egit.github.core.event.Event> fetchEvents(org.eclipse.egit.github.core.service.EventService eventService)
Fetches GitHub events from theEventService.- Parameters:
eventService- TheEventServicefor interacting with the GitHub event APIs- Returns:
PageIteratorof event objects
-
-