final case class WriteFile(filePath: String, position: Long, count: Long, ack: Event) extends SimpleWriteCommand with Product with Serializable
- Annotations
 - @deprecated
 - Deprecated
 (Since version 2.5.10) Use WritePath instead
- Source
 - Tcp.scala
 - See also
 
- Alphabetic
 - By Inheritance
 
- WriteFile
 - Serializable
 - Product
 - Equals
 - SimpleWriteCommand
 - WriteCommand
 - Command
 - HasFailureMessage
 - Message
 - NoSerializationVerificationNeeded
 - AnyRef
 - Any
 
- by any2stringadd
 - by StringFormat
 - by Ensuring
 - by ArrowAssoc
 
- Hide All
 - Show All
 
- Public
 - Protected
 
Value Members
-   final  def !=(arg0: Any): Boolean
- Definition Classes
 - AnyRef → Any
 
 -   final  def ##: Int
- Definition Classes
 - AnyRef → Any
 
 -  def +(other: String): String
 -    def ++:(writes: Iterable[WriteCommand]): WriteCommand
Prepends this command with a number of other writes.
Prepends this command with a number of other writes. The first element of the given Iterable becomes the first sub write of a potentially created
CompoundWrite.- Definition Classes
 - WriteCommand
 
 -    def +:(other: SimpleWriteCommand): CompoundWrite
Prepends this command with another
WriteorWriteFileto form aCompoundWrite.Prepends this command with another
WriteorWriteFileto form aCompoundWrite.- Definition Classes
 - WriteCommand
 
 -  def ->[B](y: B): (WriteFile, B)
 -   final  def ==(arg0: Any): Boolean
- Definition Classes
 - AnyRef → Any
 
 -    val ack: Event
The acknowledgment token associated with this write command.
The acknowledgment token associated with this write command.
- Definition Classes
 - WriteFile → SimpleWriteCommand
 
 -    def append(that: WriteCommand): CompoundWrite
Java API: appends this command with another
WriteCommandto form aCompoundWrite.Java API: appends this command with another
WriteCommandto form aCompoundWrite.- Definition Classes
 - SimpleWriteCommand
 
 -   final  def asInstanceOf[T0]: T0
- Definition Classes
 - Any
 
 -    def clone(): AnyRef
- Attributes
 - protected[lang]
 - Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
 
 -  val count: Long
 -  def ensuring(cond: (WriteFile) => Boolean, msg: => Any): WriteFile
 -  def ensuring(cond: (WriteFile) => Boolean): WriteFile
 -  def ensuring(cond: Boolean, msg: => Any): WriteFile
 -  def ensuring(cond: Boolean): WriteFile
 -   final  def eq(arg0: AnyRef): Boolean
- Definition Classes
 - AnyRef
 
 -    def failureMessage: CommandFailed
- Definition Classes
 - Command → HasFailureMessage
 
 -  val filePath: String
 -   final  def getClass(): Class[_ <: AnyRef]
- Definition Classes
 - AnyRef → Any
 - Annotations
 - @HotSpotIntrinsicCandidate() @native()
 
 -   final  def isInstanceOf[T0]: Boolean
- Definition Classes
 - Any
 
 -   final  def ne(arg0: AnyRef): Boolean
- Definition Classes
 - AnyRef
 
 -   final  def notify(): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @HotSpotIntrinsicCandidate() @native()
 
 -   final  def notifyAll(): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @HotSpotIntrinsicCandidate() @native()
 
 -  val position: Long
 -    def prepend(writes: Iterable[WriteCommand]): WriteCommand
Java API: prepends this command with a number of other writes.
Java API: prepends this command with a number of other writes. The first element of the given Iterable becomes the first sub write of a potentially created
CompoundWrite.- Definition Classes
 - WriteCommand
 
 -    def prepend(that: SimpleWriteCommand): CompoundWrite
Java API: prepends this command with another
WriteorWriteFileto form aCompoundWrite.Java API: prepends this command with another
WriteorWriteFileto form aCompoundWrite.- Definition Classes
 - WriteCommand
 
 -    def productElementNames: Iterator[String]
- Definition Classes
 - Product
 
 -   final  def synchronized[T0](arg0: => T0): T0
- Definition Classes
 - AnyRef
 
 -   final  def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.InterruptedException])
 
 -   final  def wait(arg0: Long): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.InterruptedException]) @native()
 
 -   final  def wait(): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.InterruptedException])
 
 -    def wantsAck: Boolean
An acknowledgment is only sent if this write command “wants an ack”, which is equivalent to the #ack token not being a of type NoAck.
An acknowledgment is only sent if this write command “wants an ack”, which is equivalent to the #ack token not being a of type NoAck.
- Definition Classes
 - SimpleWriteCommand
 
 
Deprecated Value Members
-    def finalize(): Unit
- Attributes
 - protected[lang]
 - Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.Throwable]) @Deprecated
 - Deprecated
 (Since version 9)
 -    def formatted(fmtstr: String): String
- Implicit
 - This member is added by an implicit conversion from WriteFile toStringFormat[WriteFile] performed by method StringFormat in scala.Predef.
 - Definition Classes
 - StringFormat
 - Annotations
 - @deprecated @inline()
 - Deprecated
 (Since version 2.12.16) Use
formatString.format(value)instead ofvalue.formatted(formatString), or use thef""string interpolator. In Java 15 and later,formattedresolves to the new method in String which has reversed parameters.
 -    def →[B](y: B): (WriteFile, B)
- Implicit
 - This member is added by an implicit conversion from WriteFile toArrowAssoc[WriteFile] performed by method ArrowAssoc in scala.Predef.
 - Definition Classes
 - ArrowAssoc
 - Annotations
 - @deprecated
 - Deprecated
 (Since version 2.13.0) Use
->instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.