Skip to content
#

client

Here are 4,614 public repositories matching this topic...

absfilho2
absfilho2 commented Sep 14, 2020

I believe that this implementation can be used for broadcast communication and also for games that want to hear a channel that is rolling a song for example.

Could you put a shortcut so you can start and end listening to a certain channel?
If you can have the implementation of a shortcut also to adjust the level of the channel. It will be perfect.

atomashpolskiy
atomashpolskiy commented Dec 16, 2019

Because in CliClient.resume() we don't account for the case, when there is an exception in one of the async processing stages:

void resume() {
	...
	try {
		client.startAsync(state -> {
			printer.ifPresent(p -> p.print(state));
			if (!options.shouldSeedAfterDownloaded() && state.getPiecesRemaining() == 0) {
				runtime.shutdown();
			}
		}, 1000); // <-- CompletableFuture.w
postgres
okbrown
okbrown commented Jan 10, 2020

Hi, First and foremost, I think this is a great start at making something really simple and effective. Thank you!!

However... I have always found template strings a little odd especially in this context.
Let us say we have

const query = `SELECT ${distinct}, ${columns} FROM ${table} ${innerJoins} WHERE ${where}`;
(Where distinct, columns, table etc are their own strings made up of other

Improve this page

Add a description, image, and links to the client topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the client topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.