I would like to calculate a duration whereas 1 day will consist of 8 hours. Is creating a new Chronology is the right approach ?
I did try to create a custom Chronology and override the assemble method with something like:
int millisPerDay = 1000 * 60 * 60 * 8;
fields.days = new PreciseDurationField(DurationFieldType.days(), millisPerDay);
However it did not have the desired effect.
Any suggestions?
Thank you in advance