The channels tag has no wiki summary.
0
votes
4answers
52 views
Are channels passed by reference implicitly
The go tour has this example for channels: http://tour.golang.org/#63
package main
import "fmt"
func sum(a []int, c chan int) {
sum := 0
for _, v := range a {
sum += v
}
c ...
0
votes
0answers
27 views
What are Channels in AQMP Rabbit MQ?
I have been reading through the RabbitMq in action book this is the following excerpt from the book [Chapter 2, Section 1] where i am stuck
Whether you’re publishing a message, subscribing to a ...
0
votes
2answers
76 views
How setup different files for Monolog in Silex
Subject. I want logging some information in different file, in search a lot examples for Symfony 2, but I use Silex with yaml config. How to set up it?
# console logging options
monolog.logfile: ...
0
votes
1answer
17 views
Cometd how to make and subscribe channel dynamically?
I am trying to create a very simple cometD app.
Mainly i want to create channels dynamically.
First i tried localsession channels and after creating subscribed them via client side javascript.
It ...
4
votes
2answers
2k views
.NET Remoting switching channels by itself
We are having an odd problem with .NET Remoting. Basically, we have a server which registers two TcpChannels with ChannelServices.RegisterChannel():
One listens on port 50000
Other one listens on ...
0
votes
1answer
95 views
Using goroutines and channels in a http handler
I've implemented a very simple twitter client reader:
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"time"
)
type twitterResult struct {
...
3
votes
2answers
131 views
How do I close a channel multiple goroutines are sending on?
I am attempting to do some computation in parallel. The program is designed so that each goroutine sends "pieces" of a solved puzzle back to the controller goroutine that waits to recieve and ...
0
votes
0answers
109 views
Making a multithreaded chat server with sockets
I'm coding server chat using TCP sockets. I implemented public and private messages. Now, how can I make channels? How can I link channels with socket clients? I made a String[] like this:
if ...
4
votes
1answer
117 views
Deadlock in Go, two routines splitting work
I'm a bit stuck on a deadlock issue in go.
This program takes an array of ints, a, and splits it into two. Then it takes these two parts in two different routines and sum up all elements. After this, ...
0
votes
1answer
192 views
NAudio display both channels in WaveViewer
I am using NAudio's WaveViewer UI control where I display the waveform using
this.customWaveViewer1.WaveStream = new NAudio.Wave.WaveFileReader(filename);
I am wondering how can I display each ...
0
votes
1answer
181 views
Matlab Audio processing
i've been assigned a homework that includes audio processing in matlab, what i got to do is get at least 3 channels of different frequencies in a song, and increase the dB output depending on the ...
1
vote
0answers
25 views
Javascript sroll and iphone / ipad
I'm making a mobile version of my website (programmetv.net) and i have a problem with javascript scroll event who not work on ipad same on a pc.
You can see my mobile version on ...
0
votes
1answer
42 views
When should one manually create Channels?
When, if ever, does netty create new Channels? Or are the only Channels in existence those created explicitly by the appllication?
2
votes
2answers
193 views
What's the best practice with channels (RabbitMQ?
I have an app in which for each received message it publishes N in the same channel. I'm wondering whether it'd be better to have two channel, a Publish channel and a Receive channel.
What would it ...
1
vote
1answer
202 views
Multiple audio and setting volume on Novocaine in iOS
How do I play multiple audio and change its volume using Novocaine?
thanks!
0
votes
1answer
79 views
Does Java's SocketChannel$read() synchronize the output buffer?
Does Java's SocketChannel.read() method synchronize the output buffer?
In other words: is there a lock on the ByteBuffer argument passed to the read(ByteBuffer) method in ...
0
votes
1answer
25 views
How spring channels are related to queues?
How spring channels are related to queues? Are channels always related to queues or these both are separate entity?
I know about queues but how spring channels wrap up queues (if they do)?
Please ...
2
votes
2answers
449 views
Port Unreachable when using Datagram Channel
While using Datagram Channel I get a PortUnreachableException. This is what my Codes look like :
This is the sender side
//Open a non-blocking socket to send data to Receiver
DatagramChannel channel ...
1
vote
1answer
177 views
netty reuse channels
i want to create a connection pool that reuse channels but i couldn't figure out
executing this test
public void test() {
ClientBootstrap client = new ClientBootstrap(new ...
0
votes
1answer
927 views
Record two channels at the same time on Android MediaRecorder or using AudioRecord?
Can I record more than one channel at the same time either using MediaRecorder or AudioRecord? What I want is to be able to record both MediaRecorder.AudioSource.VOICE_UPLINK and VOICE_DOWNLINK at the ...
2
votes
1answer
84 views
YouTube API - User account closed
I would like to ask why following channels are not available via API.
http://www.youtube.com/visalus
http://www.youtube.com/user/visalus
http://www.youtube.com/etisalat
...
1
vote
0answers
69 views
Appengine Channel attempts to connect to IP 0.0.0.0
I am debugging a problem with Channel API use which occurs locally (compiled) and deployed depending on my GWT Logging configuration when I GWT compile it.
NOTE: I am aware of the problem in GAE ...
0
votes
1answer
299 views
how do I get Mixer channels layout in java
I thought I can find anything on this great site but now I seem to face the issue with no answer :) Please help!
Thing is, I need to play up to 6 different wav files with 1 channel each into 6 ...
2
votes
1answer
39 views
Can a REMOTE QUEUE definition unexpectadly utilize the CLUSTER transmit queue
I've got a clustered partner in WMQ on distributed platforms (HP-UX). They and the qmgr they are putting messages to are both members of "my" cluster, but have never utilized the cluster relationship ...
1
vote
2answers
69 views
Expression Engine: When to use channels and when not to use them?
I am still a relative newcomer to Expression Engine as a developer and a user. I am faced with the problem that a lot of my knowledge is being passed to me by users who have found ways to accomplish ...
1
vote
2answers
140 views
Audio sample frequency rely on channels?
If you have audio encoded at 44100Hz that means you have 44100 samples per second. Does this mean 44100 samples/sec for a channel, or for all channels?
For example if a song is stereo and encoded at ...
0
votes
0answers
99 views
ANTLR3: Hide/Unhide certain tokens dynamically while parsing
I'm using ANTLR3 (C runtime) to parse a text file:
The problem is that I usually want to recognize newline characters, but at some points in the grammar I want to ignore them.
My first approach was ...
1
vote
3answers
366 views
How to embed blocks of data in ExpressionEngine without using many channels
I have used Drupal and think I'm doing it wrong with EE. I want to create many blocks of embedded User created entries in some of the templates, but don't want to have to create a channel for each ...
1
vote
3answers
411 views
How do i override the Live TV player being the default handler of an Intent set to the action ACTION_VIEW?
I am trying to follow along here. I have just starting learning to work with channels on GoogleTV.
https://developers.google.com/tv/android/docs/gtv_channelchanging
This doc says...
*Any Google TV ...
0
votes
4answers
832 views
Netty - How to test for client/server version numbers
As part of my protocol, I'd like the client to send its version number when a new connection is established. I'd like this to be done in a separate handler in the pipeline, so please bear with me as ...
0
votes
1answer
2k views
Netty: ClosedChannelException when closing channel
Why when i'm trying to close channel, I got ChannelClosedException thrown?
Closing with Channel.close(), exception's stacktrace:
java.nio.channels.ClosedChannelException
at ...
0
votes
1answer
351 views
expressionengine related entries dropdown value
I have 2 channels. Channel 2 has a dropdown select box relating to channel 1. I want to display all info regarding both channels on a single page:
{exp:channel:entries channel="channel1|channel2" ...
0
votes
2answers
747 views
Private channels in node.js and redis. How to?
I wrote the simple script (app.js) to subscribe redis' channel
var app = require('express').createServer()
, io = require('socket.io').listen(app);
var redis = require("redis");
app.listen(8080);
...
1
vote
1answer
280 views
Netty: Pipe-ing output of one Channel to the input of an other
Netty-Gurus,
I've been wondering if there is a shortcut/Netty-Utility/smart-trick
for connecting the input of one Channel to the output of
an other channel. In more details consider the following:
...
2
votes
2answers
224 views
I/O Operation On Channels Using ByteBuffer - Performance Comparision
I want to perform I/O operation on channels using ByteBuffer. Finally I came up with three solutions:
FileChannel inChannel = new FileInputStream("input.txt").getChannel();
FileChannel outChannel = ...
0
votes
1answer
522 views
Expression Engine Channels, Categories and Entries - All with differeny custom fields
I have a site with these sections in the top nav:
About Us
News
Staff
Become a Member
Within each top nav item, is X amount of sub sections. eg:
About Us
Who We Are
Industry Stats
Annual Report
...
0
votes
0answers
924 views
RTSP over HTTP client
I trying to realize RTSP over HTTP. I have a problem with connection to RTSP camera. Maybe, someone can help me?
When i call socketChannel.isConnected() - it is always false
My code:
...
0
votes
1answer
212 views
How can i see all videos in a youtube channel?
I want to get all videos in a YouTube channel. I'm unable click the "load more..." button forever. Is there any way to do that? Can be via pagination, but I can't see any pagination (I can't use ...
1
vote
2answers
531 views
Go Channels in Ruby
In the Go programming language, you can send Messages around using a construct called "Channels".
http://golang.org/doc/effective_go.html#channels
I would love to use something like that in Ruby, ...



