Uses of Class
de.stklcode.pubtrans.ura.model.Trip
Packages that use Trip
Package
Description
jURAclient base package - see
UraClient for usage.jURAclient utility classes for asynchronous reading from the API.
-
Uses of Trip in de.stklcode.pubtrans.ura
Methods in de.stklcode.pubtrans.ura that return types with arguments of type TripModifier and TypeMethodDescriptionUraClient.getTrips()Get list of trips.UraClient.getTrips(UraClient.Query query) Get list of trips.UraClient.getTrips(UraClient.Query query, Integer limit) Get list of trips for given stopIDs and lineIDs with result limit.Get list of trips with limit.UraClient.Query.getTrips()Get trips for set filters.Get trips for set filters with limit.Method parameters in de.stklcode.pubtrans.ura with type arguments of type TripModifier and TypeMethodDescriptionUraClient.getTripsStream(UraClient.Query query, Consumer<Trip> consumer) Get trips for given stopIDs and lineIDs using stream API and pass each result to given consumer.UraClient.getTripsStream(UraClient.Query query, List<Consumer<Trip>> consumers) Get trips for given stopIDs and lineIDs using stream API and pass each result to given consumers.UraClient.Query.getTripsStream(Consumer<Trip> consumer) Get trips for set filters.UraClient.Query.getTripsStream(List<Consumer<Trip>> consumers) Get trips for set filters. -
Uses of Trip in de.stklcode.pubtrans.ura.reader
Method parameters in de.stklcode.pubtrans.ura.reader with type arguments of type TripModifier and TypeMethodDescriptionvoidAsyncUraTripReader.addConsumer(Consumer<Trip> consumer) Register an additional consumer.Constructor parameters in de.stklcode.pubtrans.ura.reader with type arguments of type TripModifierConstructorDescriptionAsyncUraTripReader(URI uri, UraClientConfiguration config, List<Consumer<Trip>> consumers) Initialize trip reader.AsyncUraTripReader(URI uri, Consumer<Trip> consumer) Initialize trip reader.AsyncUraTripReader(URI uri, List<Consumer<Trip>> consumers) Initialize trip reader.