Package io.memoria.jutils.adapter.file
Record LocalFileReader
java.lang.Object
java.lang.Record
io.memoria.jutils.adapter.file.LocalFileReader
- All Implemented Interfaces:
FileReader
public record LocalFileReader(reactor.core.scheduler.Scheduler scheduler) extends java.lang.Record implements FileReader
-
Constructor Summary
Constructors Constructor Description LocalFileReader(reactor.core.scheduler.Scheduler scheduler)Creates an instance of aLocalFileReaderrecord. -
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object o)Indicates whether some other object is "equal to" this one.reactor.core.publisher.Mono<java.lang.String>file(java.nio.file.Path path)inthashCode()Returns a hash code value for this object.reactor.core.publisher.Flux<java.lang.String>lines(java.nio.file.Path path)reactor.core.scheduler.Schedulerscheduler()Returns the value of theschedulerrecord component.java.lang.StringtoString()Returns a string representation of this record.reactor.core.publisher.Mono<Yaml>yaml(java.nio.file.Path path)
-
Constructor Details
-
LocalFileReader
public LocalFileReader(reactor.core.scheduler.Scheduler scheduler)Creates an instance of aLocalFileReaderrecord.- Parameters:
scheduler- the value for theschedulerrecord component
-
-
Method Details
-
file
public reactor.core.publisher.Mono<java.lang.String> file(java.nio.file.Path path)- Specified by:
filein interfaceFileReader
-
lines
public reactor.core.publisher.Flux<java.lang.String> lines(java.nio.file.Path path)- Specified by:
linesin interfaceFileReader
-
yaml
- Specified by:
yamlin interfaceFileReader
-
toString
public java.lang.String toString()Returns a string representation of this record. The representation contains the name of the type, followed by the name and value of each of the record components.- Specified by:
toStringin classjava.lang.Record- Returns:
- a string representation of this object
-
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components.- Specified by:
hashCodein classjava.lang.Record- Returns:
- a hash code value for this object
-
equals
public final boolean equals(java.lang.Object o)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. All components in this record are compared withObjects::equals(Object,Object).- Specified by:
equalsin classjava.lang.Record- Parameters:
o- the object with which to compare- Returns:
trueif this object is the same as theoargument;falseotherwise.
-
scheduler
public reactor.core.scheduler.Scheduler scheduler()Returns the value of theschedulerrecord component.- Returns:
- the value of the
schedulerrecord component
-