sig
  type 'a t = java'util'concurrent'ScheduledFuture java_instance
  val cancel : 'ScheduledFuture.t -> bool -> bool
  val get : 'ScheduledFuture.t -> 'a
  val get_time : 'ScheduledFuture.t -> java_long -> TimeUnit.t -> 'a
  val is_cancelled : 'ScheduledFuture.t -> bool
  val is_done : 'ScheduledFuture.t -> bool
  val get_delay : 'ScheduledFuture.t -> TimeUnit.t -> java_long
  val null : 'ScheduledFuture.t
  external is_null : 'ScheduledFuture.t -> bool = "java is_null"
  external is_not_null : 'ScheduledFuture.t -> bool = "java is_not_null"
  val wrap : 'ScheduledFuture.t -> 'ScheduledFuture.t option
  val unwrap : 'ScheduledFuture.t option -> 'ScheduledFuture.t
end