// Creation of network linker library will not modify the graph
networkLinkerLibrary = new NetworkLinkerLibrary(graph,
Collections.<Class<?>, Object> emptyMap());
// Adding a bike park station service needs a graph writer runnable
updaterManager.executeBlocking(new GraphWriterRunnable() {
@Override
public void run(Graph graph) {
bikeService = graph.getService(BikeRentalStationService.class, true);
}
});