Questions tagged [switching]

A switch is a telecommunication device that receives a message from any device connected to it and then transmits the message only to the device for which the message was meant. This makes the switch a more intelligent device than a hub (which receives a message and then transmits it to all the other devices on its network). The network switch plays an integral part in most modern Ethernet local area networks (LANs)

A switch is a telecommunication device that receives a message from any device connected to it and then transmits the message only to the device for which the message was meant. This makes the switch a more intelligent device than a hub (which receives a message and then transmits it to all the other devices on its network). The network switch plays an integral part in most modern Ethernet local area networks (LANs). Mid-to-large sized LANs contain a number of linked managed switches. Small office/home office (SOHO) applications typically use a single switch, or an all-purpose converged device such as a residential gateway to access small office/home broadband services such as DSL or cable Internet. In most of these cases, the end-user device contains a router and components that interface to the particular physical broadband technology. User devices may also include a telephone interface for VoIP. An Ethernet switch operates at the data link layer of the OSI model to create a separate collision domain for each switch port. With 4 computers (e.g., A, B, C, and D) on 4 switch ports, any pair (e.g. A and B) can transfer data back and forth while the other pair (e.g. C and D) also do so simultaneously, and the two conversations will not interfere with one another. In full duplex mode, these pairs can also overlap (e.g. A transmits to B, simultaneously B to C, and so on). In the case of a repeater hub, they would all share the bandwidth and run in half duplex, resulting in collisions, which would then necessitate retransmissions.

http://en.wikipedia.org/wiki/Network_switch

329 questions
1
vote
0 answers

Xcode tab switch cmd+1 2 3

Im looking for a way to be able to switch tabs in Xcode not using next/previous tab but rather using modifier+1,2,3.. etc in order to get to a specific tab directly. I have gotten a similiar problem solved for terminal.app with the help of this…
emge
  • 13
  • 2
1
vote
0 answers

Calendar switching in Matlab GUI (DateChooserPanel)

I have a question about Matlab GUI's. I'm gonna try and explain as best as I can what exactly I need help for. I am using GUIDE for building GUI, and have a listbox with ~10 names in it. When I click on each of the names (individuals) a calendar…
dacannon
  • 11
  • 2
1
vote
2 answers

How to switch to another server if connection refused?

I need to switch to another if on current connection, connection refused, or if current IP do not exist. Here is a part of code: String [] server= {"10.201.30.200", "10.66.20.70",}; // Servers array public void Telnet(String[] server) { try { …
Samir Maksimov
  • 105
  • 1
  • 2
  • 9
1
vote
0 answers

Facebook iOS app sometimes not switching back to my app after authorization

I'm creating an app that has facebook integration to post images to a user's wall. I'm using the prime31 unity plugin called 'Social Networking'. Here's my issue: on a fresh run (having no previous authorizations on Facebook and having uninstalled…
1
vote
1 answer

Multiple page switching in android eclipse

Consider i am using five screen pages for project "A".Each page is having switching between other pages sequentially one by one,my need is to do close all the page when i am clicking the button "exit" from the page five which is the last one. I have…
andro prabu
  • 364
  • 3
  • 13
0
votes
2 answers

Openflow controller in java?

i am new to Openflow but what i read is that it provides user to modify flowtables in switches to change routing and for this purpose we use a controller. Now for my project, i have to develop a controller or may be use some existing and modify it…
911TurboS
  • 527
  • 2
  • 7
  • 14
0
votes
1 answer

How to program the simple task of switching tabs

Here's an overview of my program: Android 2.2 MainActivity (tabhost) 4 Tabs Search (uses SearchActivity) (default) Artists (uses ArtistsActivity) Albums (uses AlbumsActivity) Songs (uses SongsActivity) The app loads up to the default Search tab…
0
votes
1 answer

An event which will be raised when the last of item of a window is rendered

In my wpf application I am switching from one window(Window A) to another window(Window B) rapidly. The window to which I am switching to has some grid which gets populated using the values from database. I am seeing a delay of 30-60 secs before the…
logeeks
  • 4,849
  • 15
  • 62
  • 93
0
votes
2 answers

Why is my activity only running once?

I made this application go from one activity to the next. and then come back, but after it comes back to my main activity the button to go to the next view again does not do anything? I thought it was from startActivityForResult but I did it a…
chartle7
  • 217
  • 1
  • 2
  • 10
0
votes
2 answers

How to switch between two view controllers

I have two UIViewControllers, vc1 and vc2. I want to switch between them. But before loading the view of the new view controller, I want to destroy/release/remove (I'm not sure abt the correct word to use here) the previous viewcontroller. For…
user1085093
  • 507
  • 1
  • 5
  • 9
0
votes
1 answer

Switching pointers/values

I have an array of pointers on my class which I need to sort. Sorting is working correctly, Im just not sure, whether Im switching just reference on class, or the whole class... My code is like: ITEM *items = new ITEM[set.pathc]; ... bool change =…
Buksy
  • 11,571
  • 9
  • 62
  • 69
0
votes
0 answers

Simulating Memristors and RRAM in Silvaco: Exploring I-V Hysteresis and Oxygen Vacancy Effects

I have a question regarding the Silvaco software. I'm aware that the conduction mechanism in memristors or RRAM devices can differ significantly from drift and diffusion models due to factors like oxygen vacancies that play a key role in the…
0
votes
1 answer

Not able to switch between activities in android studio

I'm building my first interactive android app and trying to find a way to navigate between activities in Android Studio. When the code to switch activities is used, the app shuts down. When the code to navigate to another activity is removed the app…
acorn
  • 11
  • 2
0
votes
0 answers

Thread creation and implementation of mutual exclusion by use switching

I would like a little help if possible. I need to find the time in seconds to execute the tasks. I'm still learning to program in Python, my code below is not working correctly. What could I modify or correct in it? import threading import time x…
0
votes
1 answer

changing attack types / states which are bound to same key input in godot

i have a player character that has 2 attack types, a single punch and a combo attack. i want it that when the player is not near any objects/ or enemy AI to play the single punch. and if the player is in attacking distance , to play the combo…