I'm getting around 100 events at the same time that need to be converted to bookings.
Each booking only contains 2 resources.
The SRM framework has a method BookingManager.CreateNewBooking(...), but I do see that in the resourcemanager there's an addbulk method. (SrmManagers.ResourceManager.AddReservationInstancesBulk().)
What's the best approach to create these bookings?
Hi Tim,
You need to make a bookingManager.CreateNewBooking for each event that you receive. Creating booking is more that that call, you need to book resources, create services, etc. things that can't be done 100 in parallel.
It shouldn't take long anyway to create 100 bookings.