You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
566 B
22 lines
566 B
4 months ago
|
package javax.sip.header;
|
||
|
|
||
|
import javax.sip.InvalidArgumentException;
|
||
|
|
||
|
public interface TimeStampHeader extends Header {
|
||
|
String NAME = "Timestamp";
|
||
|
|
||
|
float getDelay();
|
||
|
void setDelay(float delay) throws InvalidArgumentException;
|
||
|
boolean hasDelay();
|
||
|
void removeDelay();
|
||
|
|
||
|
long getTime();
|
||
|
void setTime(long timeStamp) throws InvalidArgumentException;
|
||
|
|
||
|
int getTimeDelay();
|
||
|
void setTimeDelay(int delay) throws InvalidArgumentException;
|
||
|
|
||
|
float getTimeStamp();
|
||
|
void setTimeStamp(float timeStamp) throws InvalidArgumentException;
|
||
|
}
|