Record Class VulkanSemaphoreTimelineWait
java.lang.Object
java.lang.Record
com.io7m.jcoronado.api.VulkanSemaphoreTimelineWait
- Record Components:
semaphore- The semaphorevalue- The value
public record VulkanSemaphoreTimelineWait(VulkanSemaphoreTimelineType semaphore, long value)
extends Record
A request to wait until the given semaphore has at least the given value.
-
Constructor Summary
ConstructorsConstructorDescriptionVulkanSemaphoreTimelineWait(VulkanSemaphoreTimelineType semaphore, long value) A request to wait until the given semaphore has at least the given value. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thesemaphorerecord component.final StringtoString()Returns a string representation of this record class.longvalue()Returns the value of thevaluerecord component.
-
Constructor Details
-
VulkanSemaphoreTimelineWait
A request to wait until the given semaphore has at least the given value.- Parameters:
semaphore- The semaphorevalue- The value
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
semaphore
-
value
-