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
3
votes
1 answer

When to start a new activity and when to reuse an old one in Android

I'm fairly new to Android and I'm a little bit confused on when to start new activities. Here is the situation. I have a library, webview and reader activity. Say the user wants to go library -> webview -> reader -> library Should I be creating a…
odiggity
  • 4,117
  • 7
  • 34
  • 41
3
votes
1 answer

Disable walking between tabs Shiny

I have shiny application with several tabs. The problem is that I want to walk between tabs with button, not by clicking on the tab. How I can disable clicking on tabs? Small example of code: ui <- navbarPage('Test App', id = "inTabset", …
neringab
  • 613
  • 1
  • 7
  • 16
3
votes
0 answers

Finding the set of wildcards for representing a binary interval

In a switch flow table there is a field called match field, where a list of matching condition is maintained. In the match fields, binary sequences with wildcards (*, a bit of wildcard character means that it could be either 1 or 0 in this bit) are…
3
votes
4 answers

Switching over to next Screen from the main Activity by clicking on the Button

I am working on an application where I need to go to the next Screen form the Main Actvity when I Click on the Image Button of the Main Activity Screen. I had searched a bit on Net regarding this and found something like the OnClickListener method.…
David Brown
  • 4,783
  • 17
  • 50
  • 75
3
votes
0 answers

React-native switch with image?

I would like to make a switch on my app with react-native. The switch should look like the switch on Tinder as demonstrated below: Are there any suggestions? Thanks.
ykn121
  • 835
  • 1
  • 9
  • 28
3
votes
2 answers

Too slow switching for android in Unity3D

My game has 1000+ frames and format of sprites is Crunch because of too many sprites in this project. when I want to switch it from windows to android it takes me almost 1 day to switch (actually I don't permit it to switch completely) but switching…
ATHellboy
  • 704
  • 3
  • 15
  • 30
3
votes
2 answers

WinForms modal windows alt+tab problem

Suppose multiple Modal Windows shown above each other. All of those have ShowInTaskbar = false, which means that in the TaskBar you only see the MainForm and all Modal Windows are hidden. Now you press ALT+ TAB and the most upper modal Windows…
theSpyCry
  • 12,073
  • 28
  • 96
  • 152
3
votes
2 answers

Large branching trees in java?

My question is about scalable logic branching. Is there an elegant way to do branching logic trees in java (although I've always thought that they look more like root systems, but that's beside the point). I'm trying to develop a very simple text…
Kardis
  • 33
  • 5
3
votes
1 answer

Ios: How can I make my app go back to root view when App goes Inactive

I want my app to go back to the login screen (Which is the root view in the navigation Controller) when it goes inactive. I'm in applicationWillResignActive and appdelegate.m does not recognize self.navigationController I tried to make an outlet or…
2
votes
0 answers

Why doesn't this JQuery stylesheet switcher store a cookie?

I have a downloaded stylesheet switcher that doesn't seem to work properly. The switcher works in as much as the new stylesheet is loaded, however the cookie that it is meant to store and read never actually occurs (I assume as much, as when I…
Shtev
  • 21
  • 1
  • 1
2
votes
1 answer

keep-alive not works in vue.js

My vuejs version is 3. I implement both of these ways to use keep-alive in my app. 1