Skip navigation links
A B C D E F G H I J L M N O P R S T U V W X Y 

F

Factory<T> - Interface in ratpack.func
An object that creates another.
failedPromise(Throwable) - Method in interface ratpack.exec.ExecControl
Creates a failed promise with the given error.
fanOut(Publisher<? extends Iterable<T>>) - Static method in class ratpack.stream.Streams
Returns a publisher that publishes each element from Collections that are produced from the given input publisher.
file(String) - Method in interface ratpack.file.FileSystemBinding
Creates a file reference relative to the bind point denoted by the given relative path.
file(String) - Method in interface ratpack.form.Form
Return the first uploaded file with the given name.
file(String) - Method in interface ratpack.handling.Context
Gets the file relative to the contextual FileSystemBinding.
file(String) - Method in interface ratpack.test.embed.BaseDirBuilder
Returns a path for the given path within the base dir.
file(String, String) - Method in interface ratpack.test.embed.BaseDirBuilder
Creates a file with the given string content at the given path within the base dir.
files(String) - Method in interface ratpack.form.Form
Return all of the uploaded files with the given name.
files() - Method in interface ratpack.form.Form
Returns all of the uploaded files.
fileSystem(String, Action<? super Chain>) - Method in interface ratpack.groovy.handling.GroovyChain
Adds a handler to this chain that changes the FileSystemBinding for the given handler chain.
fileSystem(String, Class<? extends Action<? super Chain>>) - Method in interface ratpack.groovy.handling.GroovyChain
fileSystem(String, Closure<?>) - Method in interface ratpack.groovy.handling.GroovyChain
Creates a List of Handler from the given Closure and adds a Handler to this GroovyChain that changes the FileSystemBinding for the Handler list.
fileSystem(String, Action<? super Chain>) - Method in interface ratpack.handling.Chain
Adds a handler to this chain that changes the FileSystemBinding for the given handler chain.
fileSystem(String, Class<? extends Action<? super Chain>>) - Method in interface ratpack.handling.Chain
 
fileSystem(ServerConfig, String, Handler) - Static method in class ratpack.handling.Handlers
A handlers that changes the FileSystemBinding for the given handlers.
FileSystemBinding - Interface in ratpack.file
A file system binding represents a file system location that is used to resolve relative paths.
FileSystemChecksumService - Interface in ratpack.file
 
FileSystemChecksumServices - Class in ratpack.file
Factory methods for creating FileSystemChecksumService.
filter(Pair<String, String>) - Method in interface ratpack.config.EnvironmentParser
Provides an opportunity to remove environment variables from parsing by the remainder of the pipeline.
filter(Publisher<T>, Predicate<T>) - Static method in class ratpack.stream.Streams
Returns a publisher that filters items from the given input stream by applying the given filter predicate.
filter(Predicate<T>) - Method in interface ratpack.stream.TransformablePublisher
findBaseDir() - Static method in interface ratpack.server.ServerConfig
Creates a builder by finding a properties file with the default name ().
findBaseDir(String) - Static method in interface ratpack.server.ServerConfig
Creates a builder based on a properties file with the given path either on the classpath or relative to the working directory.
first(TypeToken<T>, Function<? super T, ? extends O>) - Method in interface ratpack.registry.Registry
Find and transform an item.
flatMap(Function<? super T, ? extends Promise<O>>) - Method in interface ratpack.exec.Promise
Transforms the promised value by applying the given function to it that returns a promise for the transformed value.
flatMap(Publisher<I>, Function<? super I, ? extends Promise<? extends O>>) - Static method in class ratpack.stream.Streams
Returns a publisher that publishes items from the given input publisher after transforming each item via the given, promise returning, function.
flatMap(Function<? super T, ? extends Promise<? extends O>>) - Method in interface ratpack.stream.TransformablePublisher
flatYield(Function<? super YieldRequest, ? extends Promise<? extends T>>) - Static method in class ratpack.stream.Streams
Creates a new publisher, backed by the given asynchronous data producing function.
forkEach(Observable<T>) - Static method in class ratpack.rx.RxRatpack
Parallelize an observable by creating a new Ratpack execution for each element.
Form - Interface in ratpack.form
An uploaded form.
form() - Static method in interface ratpack.form.Form
Creates a parseable object to parse a request body into a Form.
form(boolean) - Static method in interface ratpack.form.Form
Creates a parseable object to parse a request body into a Form.
FormParseOpts - Interface in ratpack.form
Options for parsing a Form.
from(Consumer<T>) - Static method in interface ratpack.func.Action
Creates an action from a JDK consumer.
from(BiConsumer<T, U>) - Static method in interface ratpack.func.BiAction
Creates an bi-action from a JDK bi-consumer.
from(Function<I, O>) - Static method in interface ratpack.func.Function
Creates a function of this type from a JDK style function.
from(Predicate<T>) - Static method in interface ratpack.func.Predicate
Creates a predicate from a JDK predicate.
fromGuava(Function<I, O>) - Static method in interface ratpack.func.Function
Creates a function of this type from a Guava style function.
fromGuava(Predicate<T>) - Static method in interface ratpack.func.Predicate
Creates a predicate from a Guava predicate.
fromHandler(Handler) - Static method in interface ratpack.test.embed.EmbeddedApp
Creates an embedded application with a default launch config (no base dir, ephemeral port) and the given handler.
fromHandler(Path, Handler) - Static method in interface ratpack.test.embed.EmbeddedApp
Creates an embedded application with a default launch config (ephemeral port) and the given handler.
fromHandlerFactory(Function<? super Registry, ? extends Handler>) - Static method in interface ratpack.test.embed.EmbeddedApp
Creates an embedded application with a default launch config (no base dir, ephemeral port) and the given handler.
fromHandlerFactory(Path, Function<? super Registry, ? extends Handler>) - Static method in interface ratpack.test.embed.EmbeddedApp
Creates an embedded application with a default launch config (ephemeral port) and the given handler.
fromHandlers(Action<? super Chain>) - Static method in interface ratpack.test.embed.EmbeddedApp
Creates an embedded application with a default launch config (no base dir, ephemeral port) and the given handler chain.
fromJson(Class<T>) - Static method in class ratpack.jackson.Jackson
Creates a parseable object to parse a request body into the given type.
fromJson(TypeToken<T>) - Static method in class ratpack.jackson.Jackson
Creates a parseable object to parse a request body into the given type.
fromJson(Class<T>, ObjectMapper) - Static method in class ratpack.jackson.Jackson
Creates a parseable object to parse a request body into the given type.
fromJson(TypeToken<T>, ObjectMapper) - Static method in class ratpack.jackson.Jackson
Creates a parseable object to parse a request body into the given type.
fromServer(RatpackServer) - Static method in interface ratpack.test.embed.EmbeddedApp
Creates an embedded application for the given server.
fromServer(Factory<? extends RatpackServer>) - Static method in interface ratpack.test.embed.EmbeddedApp
Creates an embedded application for the given server.
fromServer(ServerConfig, Action<? super RatpackServerSpec>) - Static method in interface ratpack.test.embed.EmbeddedApp
Creates an embedded application using the given server config, and server creating function.
Fulfiller<T> - Interface in ratpack.exec
A fulfiller of an asynchronous promise.
Fulfillment<T> - Interface in ratpack.exec
Convenience type for Action<Fulfiller<T>> implementations.
Function<I,O> - Interface in ratpack.func
A single argument function.
A B C D E F G H I J L M N O P R S T U V W X Y 
Skip navigation links