io.vertx.codegen.annotations.Fluent.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(5.3k)|赞(0)|评价(0)|浏览(190)

本文整理了Java中io.vertx.codegen.annotations.Fluent.<init>()方法的一些代码示例,展示了Fluent.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Fluent.<init>()方法的具体详情如下:
包路径:io.vertx.codegen.annotations.Fluent
类名称:Fluent
方法名:<init>

Fluent.<init>介绍

暂无

代码示例

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Adds a new value with the specified name and value.
 *
 * @param name The name
 * @param value The value being added
 * @return a reference to this, so the API can be used fluently
 */
@Fluent
MultiMap add(String name, String value);

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Adds all the entries from another MultiMap to this one
 *
 * @return a reference to this, so the API can be used fluently
 */
@Fluent
MultiMap addAll(MultiMap map);

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Copy a file from the path {@code from} to path {@code to}, asynchronously.
 * <p>
 * The copy will fail if the destination already exists.
 *
 * @param from  the path to copy from
 * @param to  the path to copy to
 * @param handler  the handler that will be called on completion
 * @return a reference to this, so the API can be used fluently
 */
@Fluent
FileSystem copy(String from, String to, Handler<AsyncResult<Void>> handler);

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Blocking version of {@link #copy(String, String, Handler)}
 */
@Fluent
FileSystem copyBlocking(String from, String to) ;

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Create a symbolic link on the file system from {@code link} to {@code existing}, asynchronously.
 *
 * @param link  the link
 * @param existing  the link destination
 * @param handler  the handler that will be called on completion
 * @return a reference to this, so the API can be used fluently
 */
@Fluent
FileSystem symlink(String link, String existing, Handler<AsyncResult<Void>> handler);

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Blocking version of {@link #link(String, String, Handler)}
 */
@Fluent
FileSystem symlinkBlocking(String link, String existing) ;

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Unlinks the link on the file system represented by the path {@code link}, asynchronously.
 *
 * @param link  the link
 * @param handler  the handler that will be called on completion
 * @return a reference to this, so the API can be used fluently
 */
@Fluent
FileSystem unlink(String link, Handler<AsyncResult<Void>> handler);

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Blocking version of {@link #mkdirs(String, String, Handler)}
 */
@Fluent
FileSystem mkdirsBlocking(String path, String perms) ;

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Creates the file, and writes the specified {@code Buffer data} to the file represented by the path {@code path},
 * asynchronously.
 *
 * @param path  path to the file
 * @param handler  the handler that will be called on completion
 * @return a reference to this, so the API can be used fluently
 */
@Fluent
FileSystem writeFile(String path, Buffer data, Handler<AsyncResult<Void>> handler);

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Blocking version of {@link #createFile(String, Handler)}
 */
@Fluent
FileSystem createFileBlocking(String path) ;

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Sets the summary of the CLI.
 *
 * @param summary the summary
 * @return the current {@link CLI} instance
 */
@Fluent
CLI setSummary(String summary);

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Sets the list of arguments.
 *
 * @param options the list of options, must not be {@code null}
 * @return the current {@link CLI} instance
 */
@Fluent
CLI setOptions(List<Option> options);

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Removes an argument identified by its index. This method does nothing if the argument cannot be found.
 *
 * @param index the argument index
 * @return the current {@link CLI} instance
 */
@Fluent
CLI removeArgument(int index);

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Like {@link #send(String, Object, DeliveryOptions)} but specifying a {@code replyHandler} that will be called if the recipient
 * subsequently replies to the message.
 *
 * @param address  the address to send it to
 * @param message  the message, may be {@code null}
 * @param options  delivery options
 * @param replyHandler  reply handler will be called when any reply from the recipient is received, may be {@code null}
 * @return a reference to this, so the API can be used fluently
 */
@Fluent
<T> EventBus send(String address, Object message, DeliveryOptions options, Handler<AsyncResult<Message<T>>> replyHandler);

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Appends the specified unsigned {@code int} to the end of the Buffer. The buffer will expand as necessary to accommodate any bytes written.<p>
 * Returns a reference to {@code this} so multiple operations can be appended together.
 */
@Fluent
Buffer appendUnsignedInt(long i);

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Appends the specified {@code float} to the end of the Buffer. The buffer will expand as necessary to accommodate any bytes written.<p>
 * Returns a reference to {@code this} so multiple operations can be appended together.
 */
@Fluent
Buffer appendFloat(float f);

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Sets the {@code int} at position {@code pos} in the Buffer to the value {@code i}.<p>
 * The buffer will expand as necessary to accommodate any value written.
 */
@Fluent
Buffer setInt(int pos, int i);

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Sets the bytes at position {@code pos} in the Buffer to the value of {@code str} encoded in UTF-8.<p>
 * The buffer will expand as necessary to accommodate any value written.
 */
@Fluent
Buffer setString(int pos, String str);

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Cleans and set all values of the given instance
 *
 * @return a reference to this, so the API can be used fluently
 */
@GenIgnore(GenIgnore.PERMITTED_TYPE)
@Fluent
MultiMap setAll(Map<String, String> headers);

代码示例来源:origin: eclipse-vertx/vert.x

/**
 * Blocking version of {@link #chown(String, String, String, Handler)}
 *
 */
@Fluent
FileSystem chownBlocking(String path, @Nullable String user, @Nullable String group) ;

相关文章

Fluent类方法