- 
                Notifications
    
You must be signed in to change notification settings  - Fork 39
 
Description
Given the sequence below, of Groups each containing 4 objects, with the request time of subscription shown midway through receipt of object 1 of group 2. The relay has received the first bytes of Object 1-2, but not the complete object.
- Current SUSBCRIBE text indicates
 
Latest Group (0x1) : Specifies an open-ended subscription with objects from the beginning of the current group. If no content has been delivered yet, the subscription starts with the first published or received group.
Latest Object (0x2): Specifies an open-ended subscription beginning from the current object of the current group. If no content has been delivered yet, the subscription starts with the first published or received group.
Does a SUBSCRIBE of Latest Object (0x2) begin with
a) 2-0 because it the latest complete object at the relay
b) 2-1 because some of the bytes have been received
c) 2-2 because we don't want to start a subscription on a partially received object
- FETCH text indicates
 
EndObject: The end Object ID, plus 1. A value of 0 means the entire group is requested.
What is the largest EndObject object a player can issue a FETCH for?  Is it
a) Object 2-0 because that is the last fully received object?
b) Object 2-1 because some bytes have been received?
- SUBSCRIBE_OK text indicates
 
Largest Object ID: The largest Object ID available within the largest Group ID for this track. This field is only present if ContentExists has a value of 1.
What largest Object ID would be returned? Is it
a) 2-0 because it the latest complete object at the relay
b) 2-1 because some of the bytes have been received
