A communication construct enabling sending of objects between execution threads. You may and should use this tag to refer either to the generic programming notion or the specific implementations in various languages or libraries. In the latter case don't forget to add the appropriate tag.
2
votes
1answer
57 views
In golang, why does my program run slower when I use a buffered (asynchronous) channel?
I'm fairly new to golang, so I'm sure that this question is largely due to some conceptual shortcomings on my part.
In golang, we can have two types of channels: unbuffered and buffered (synchronous ...
1
vote
4answers
101 views
How to pass compressed bytes through channel?
I'm trying to compress file from buffered reader and pass compressed bytes through byte channel, but with poor results :), here's what I came up till now, obviously this don't works...
func ...
0
votes
2answers
28 views
Does SocketChannel.close() close the socket also?
I have a server program that needs to close any connections that remain when the server is shutting down. I know I need to call SocketChannel.close(). My question is if I also need to close the Socket ...
2
votes
2answers
64 views
Wait for the termination of n goroutines
I need to start a huge amount of goroutines and wait for their termination. The intuitive way seems to use a channel to wait till all of them are finished :
package main
type Object struct {
...
1
vote
1answer
28 views
How to keep WCF Service Alive?
I have a situation where I have two programs (one exe and one dll loaded into the process space of another third-party exe) communicating requests with each other using a local machine wcf service ...
0
votes
0answers
48 views
Google Play Private Channel “Restrict Distribution” option missing
I would like to publish our in-house apps using a Google Play Private Channel.
Here are the steps I've performed so far:
Registered for Google Apps for Business
Verified domain
Enabled Private ...
1
vote
2answers
61 views
communication with channels of type array
I'm trying using a simple model here to test my understanding of go channels. in the small snippet below I try to use 2 processes of a fake news feed that append several headlines to a local array ...
0
votes
2answers
55 views
Open Youtube Channel calling YouTube App (Android)
I want to open YouTube App showing an specific channel, but this only execute the browser.
try
{
Intent intent = new Intent(Intent.ACTION_VIEW);
...
0
votes
0answers
40 views
Google App Engine Channel API - reusing token
I have been trying to set up a chat facility using the Channel API and it is pretty much there, although I'm just struggling to get my head around the token and channel use. What I am doing is when a ...
0
votes
1answer
28 views
What does it mean channel.id()?
I'm trying to count any "new" client who connect to my HTTP server based on Netty 4 CR1.
Before CR1, it seems that channel.id was unique for any requests from a client.
Now, I have a different channel ...
1
vote
0answers
29 views
Java Client for Android - constat channel with server
I'm developing mobile application that makes your smartphone as controller for the game.
The communication between mobile client and server should be as quick as possible (mobile app is going to send ...
6
votes
2answers
108 views
Is blocking on a channel send a bad synchronization paradigm and why
Effective Go gives this example on how to emulate a semaphore with channels:
var sem = make(chan int, MaxOutstanding)
func handle(r *Request) {
<-sem
process(r)
sem <- 1
}
func ...
1
vote
1answer
45 views
Use Channel API to receive messages from task in Task Queue
I am trying to figure out the Task Queue and Channel API.
I have a process that is expected to run >60 seconds added to the task queue when the user submits a form. This process should then send ...
0
votes
0answers
108 views
Random guy in my webrtc channel [closed]
Fascinated by the latest WebRTC techonlogy, I want to get familiar with it by building a Rails application that will be a little bit like conversat.io.
I am using a very simple WebRTC library, which ...
1
vote
1answer
21 views
With the audio tool sox, how can I determine whether a stereo recording is in fact mono?
I have stereo files (2-channel-WAV) which sound totally like mono recordings. Is there a way to let sox run over the file and output whewther the 2 channels are the same or not?
Or is there another ...
1
vote
3answers
138 views
How to check a channel is closed or not without reading it?
This is a good example of workers & controller mode in go written by @Jimt, you can read his answer here:
Is there some elegant way to pause & resume any other goroutine in golang?
package ...
3
votes
1answer
116 views
Is there some elegant way to pause & resume any other goroutine in golang?
In my case, I have thousands of goroutines working simultaneously as work(). I also had a sync() goroutine. When sync starts, I need any other goroutine to pause for a while after sync job is done. ...
0
votes
3answers
117 views
Tcl C API: redirect stdout of embedded Tcl interp to a file without affecting the whole program
#include <tcl.h>
int main(int argc, char** argv)
{
Tcl_Interp *interp = Tcl_CreateInterp();
Tcl_Channel stdoutChannel = Tcl_GetChannel(interp, "stdout", NULL);
...
1
vote
1answer
48 views
Different music channels in Visual c# Express
I'm making a videogame in Visual c# Express and almost everything is right, but I can't make 2 different music Channels. I mean, the intro music is different than the game music. but when I click ...
0
votes
1answer
37 views
Channels, Bootstrap Carousel and ExpressionEngine driving me insane
I know somebody already had their problem fixed on here regarding channels and expressionengine, but nothing worked for me! Still really struggling. I can get only one post to show in the carousel, ...
1
vote
1answer
65 views
netty: channel.write() does not succeed and cause is null
I have a netty client which does basically the following:
After connecting to the server via TCP, the program calls the below snippet. The first time goes well but the second has the following ...
5
votes
4answers
129 views
Do go channels preserve order when blocked?
I have a slice of channels that all receive the same message:
func broadcast(c <-chan string, chans []chan<- string) {
for msg := range c {
for _, ch := range chans {
ch ...
0
votes
1answer
213 views
Channel URL Facebook
I'm implementing the facebook login in my website wich is in the form of mysite.anotherdomain.org . I did all explained in the Documentation of the Javascript SDK but, since I have some problems, I'm ...
1
vote
0answers
14 views
CommunicationChannel faulted - DTexec vs. SQL Job Agent
I have a SSIS package with a Script task in it.
In the script I use IRequestChannel to communicate with SAP RFC programme.
Weird error is, that if I run the package via dtexec, I get the error ...
0
votes
2answers
70 views
Spring Integration: Listening for exceptions on inbound-gateway
I'm new to spring integration so I may misuse terms.
I've a ws:inbound-gateway listening to soap web service requests.
<int-ws:inbound-gateway id="myInGW"
...
0
votes
2answers
63 views
Symfony2: Logging 1. own Channel 2. in own File (in dev)
Sorry for this Thread, but I really can't figure out, how to configure Symfony2 to do what I like it to do :-)
I just don't get the 'big picture'.
I would like to create an own log-channel for some ...
0
votes
0answers
6 views
can i make the subscribe method in juggernaut takes an array of channels? just like the publish method
I found some example code here.
Juggernaut.publish(["channel1", "channel2"], ["foo", "bar"])
so can I do something to make the subscribe method takes a lot channels.thx.
0
votes
1answer
56 views
Is there a way in Netty 4 to pass a Channel “Name/ID” on connect that I can use for server-side registration?
BACKGROUND:
I wish to maintain a server-side registry of connected Channels, but I also need this registry to be KEY-ed by a well-known name/id - unique per connected Channel.
Therefore, I will be ...
1
vote
2answers
112 views
Why is this program producing output
I am new to GO from google. In buffered channels here is a program:
package main
import "fmt"
import "time"
func main() {
c := make(chan int, 2)
c <- 1
fmt.Println(<-c)
...
0
votes
0answers
20 views
Have User Grant Us Permission to View Their YouTube Stats
I'm brand new (talk to me like a 5 year old) to pulling data via the YouTube API. What I'm trying to accomplish is the ability to have a user give us permission to view their overall YouTube video ...
0
votes
0answers
47 views
is socketChannel.register() sychronized with close() method in java NIO?
in openJDK(jdk-6u23)this implementation of AbstractSelectableChannel.register() just like below:
it first checks whether this channel is open or not.and then do the register work with reg lock.but ...
1
vote
1answer
53 views
TryRecv returning channel closed despite beeing open
I am trying to write a function in Go which monitors a channel and logs what is sent through it.
func monitorChannel(inChannel, outChannel reflect.Value, fid int64, cond *sync.Cond) {
for { ...
1
vote
2answers
102 views
Client channel is not in writable state(NIO) Netty
client channel is not in writable state in netty . Can any experts guide me to find-out the reason
why the channel is always not in writable state?
since it is not in writable state our threads are ...
0
votes
1answer
82 views
Netty 4.0 Difference between ChannelInboundByteHandler and ChannelInboundMessageHandler
In Netty 4.0, What is the difference between ChannelInboundByteHandler and ChannelInboundMessageHandler or ChannelOutboundByteHandler and ChannelOutboundMessageHandler?
0
votes
1answer
49 views
TCP Connection over a secure ssh connection
I am trying to use JSCH to connect to a remote server and then from that server open a telnet like session over a tcp/ip port. Say connect to server A, and once connected issue a tcp connection to ...
0
votes
0answers
26 views
How to Map Portchannel to Interfaces via SNMP
How do I get this result via SNMP?
show etherchannel summary
Group Port-channel Protocol Ports
------+-------------+-----------+-----------------------------------------------
1 Po1(RU) ...
0
votes
1answer
150 views
find a youtube user id from channel
I need to retrieve this channel's video list:
http://www.youtube.com/channel/UC7TsIpq04qdyW4jZpWC2eow?feature=mhee
but I can't find the id...normally you would choose a video and hover with mouse ...
0
votes
1answer
119 views
NS2 : How to know the number of channel slots ?
This is regarding NS2 MAC layer simulation.
Suppose that the Ns2 Channel bandwidth is 1 Mbps.
Then, by default, into how many slots is the channel divided into?
If it is divided, how much is each ...
3
votes
1answer
76 views
Releasing channel in Go
I have a TCP socket and 2 goroutines reading and writing to streams.
I am writing a goroutine that reads data from a channel.
If the TCP connection is dropped then the read from the go routine will ...
1
vote
0answers
27 views
PEAR fails to install on Ubuntu 12.x [duplicate]
I have a problem I thought would be solved with Ubuntu 12.10, but no luck... I had the same thing with 12.04 when trying to install something with PEAR :
Warning: file_exists(): Unable to find the ...
0
votes
0answers
46 views
Impletmenting Expression Engine channel tags into jquery
I am using qtip jquery and need to impletement expression engine channel tags to push data from the cms into the content field
Doesn't seem to be working what I am doing at the moment, it just stops ...
1
vote
1answer
334 views
Jsch error - failed to send channel request
I am trying to connect to a SFTP remote server using JSCH library version 0.1.49. Every time I run the program I receive the following error :
Initializing...
Connection to SFTP server is ...
0
votes
0answers
162 views
Joomla. How can I add TV channel to my Joomla website?
how can I add TV channel to my Joomla website?
Example page:
http://www.filmukai.eu/tv.php
I need to add lithuanian TV channels to my website.
I found code, but I don't know if it's that what I ...
1
vote
1answer
77 views
Getting value from Go channel
I have a go-routine which is listening for TCP connections and send these on a channel back to the main loop. The reason I'm doing this in a go-routine is to make this listening non-blocking and be ...
5
votes
1answer
103 views
How to do nothing when no channel is ready to be read?
Let's take this example from the GoTour, as it illustrates my problem with processing SDL events only when there are events.
package main
import (
"fmt"
"time"
)
func main() {
tick := ...
2
votes
0answers
345 views
WCF ChannelFactory and channels - caching, reusing, closing and recovery
I have the following planned architecture for my WCF client library:
using ChannelFactory instead of svcutil generated proxies because
I need more control and also I want to keep the client in a ...
0
votes
0answers
32 views
RabbitMQ channel spawning in php
Having read some questions about rabbitmq channel creation best practices I concluded that the rule of thumb is to create a channel per thread. But since PHP has no built-in support for ...
0
votes
1answer
80 views
exctract url from vimeo feed channel and regex
i need exctract from feed of vimeo channel the url of video without
the word /channel/name
example feed: vimeo.com/channels/nudiecutie/videos/rss
example video url : ...
2
votes
2answers
3k views
How can I get an channel id from YouTube?
I'm trying to retrive the data from my channel using the ** YouTube Data API V3**.
For that I need my channel id.
I've tried to find my channel id from my YouTube account, and I failed in every single ...
0
votes
1answer
110 views
Create A Channel using Youtube API in .Net
The new youtube api (2.1 and 3.0) supports creating a channel for youtube if the google account is not linked to youtube
http://apiblog.youtube.com/2011/10/introducing-google-account-support-and.html
...


