Questions tagged [bidirectional]

"Bidirectional" refers to any process or structure that works in two directions. Use the tag `bidi` for bidirectional text instead of this tag.

"Bidirectional" is a general concept and can have a lot of meanings:

  • bidirectional text, see
  • bidirectional associations of data
  • bidirectional synchronization
  • bidirectional mapping
  • bidirectional communication
  • bidirectional search algorithms

See also: https://en.wikipedia.org/wiki/Bidirectional

493 questions
0
votes
2 answers

WCF, 4.0, Bidirectional

...what options are there now with .NET 4.0, in a way that does support NAT for the client side (i.e. client behind NAT). I would prefer to use something HTTP based, but that is a weak condition - I think mid term I will have some non http…
TomTom
  • 61,059
  • 10
  • 88
  • 148
0
votes
1 answer

StructureMap problems with bidirectional/circular dependencies

I am currently integrating StructureMap within our business layer but have problems because of bidirectional dependencies. The layer contains multiple managers where each manager can call methods on each other: there are no restrictions or rules for…
leozilla
  • 1
  • 1
  • 1
0
votes
0 answers

Hibernate bidirectional association removal

I am using hibernate and Spring to persist data in database, (just to be sure I've tested with MySQL and MSSQL) and I am facing a strange behaviour, I'm mapping my classes this is way: public class User extends BaseDomain implements UserDetails…
0
votes
1 answer

Doctrine Single Table Inheritance and bidirectional OneToMany: columns not being generated

The data model: The entities: Pet: /** * @ORM\Entity * @ORM\Table(name="pet") * @ORM\InheritanceType("JOINED") * @ORM\DiscriminatorColumn(name="pet_type", type="string") */ abstract class Pet { /** * @ORM\Id *…
0
votes
0 answers

hibernate doesn't understand "optional=true" in bidirectional onetoone

I'm stuck with one example from "Java Persistence with Hibernate" book, chapter 7.1.3. I modified example a little, because it was too simple. I mapped two entities as one-to-one association with join table. It's bidirectional and…
0
votes
1 answer

Bidirectional Redirect to Mobile Site

I have a website and mobile site on two different domains (they are also on separate IP addresses): www.domainname.com and m.domainname.com. I want to set up an automatic redirect from www.domainname.com --> m.domainname.com when it's visited on a…
geochanto
  • 972
  • 2
  • 13
  • 45
0
votes
1 answer

FTDI MPSSE read from a bidirectional DATA pin

I have successfully communicated (both read and write) on several eeprom with FTDI 4232H SPI. However, this time I have a chip which has only a bidirectional data pin. I have hooked up both the SDO and SDI of the ftdi chip to this bidirectional data…
clun
  • 51
  • 3
0
votes
2 answers

Does BiDi support need to extend to visualizations?

I'm in the process of writing a visualization library for a product I work on and I've been thinking about i18n and BiDi support. I haven't been able to find a good answer anywhere, and my Project Manager doesn't really know the answer either. My…
0
votes
1 answer

symfony2 manytomany bidirectional

I need a ManyToMany relation between two classes: User and Document. I have the following: Class User /** * @ORM\Id * @ORM\Column(type="string") */ protected $guid; /** *…
bamalu
  • 25
  • 2
  • 8
0
votes
1 answer

Bidirectional mapping in hibernate

I have two tables, quotation and quotation_item. There is one to many relationship them. My requirement is when I do quotation.setQuotationItem(set), old quotationItem mapped to quotation should get removed and quotationItems in set should get…
Bhushan
  • 1,489
  • 3
  • 27
  • 45
0
votes
1 answer

Grails Many-to-Many Bidirectional

I'm having a problem with creating a many-to-many bidirectional relationship in GORM, and the solutions I'm finding aren't really what I would like to do. The relationship I currently have set up allows an author to have multiple books, but not the…
Boogiechillin
  • 276
  • 3
  • 19
0
votes
0 answers

Bidirectional Implementation of Dijkstra's Algorithm in C++

I recently just started to learn c++ and for my next homework assignment I have to implement a bidirectional version of dijkstra's algorithm. I'm supposed to build on my last assignment which makes a graph using vectors. I'm wondering what the best…
0
votes
0 answers

Why TCP performance degrade with bidirectional traffic?

I've made a simple experiment on TCP transportation performance. The experiment is as follows: There are two machines, A and B, each installed with Ubuntu 12.04 Server. I've installed "iperf" on either machine, and use it to test the transportation…
0
votes
1 answer

Bi-directional Map in Riak

I want to store a structure similar to bi-directional map in Riak. I have two buckets with inversed keys and values. I want to remove the record in the second bucket when it was removed from the first. As I understand, it can't be done with the…
Tolsi
  • 656
  • 9
  • 20
0
votes
1 answer

Bidirectional string conversion in scala

I wanted to be able to write the following code snippet: val Converter = converter"const1:$F;array:$AF" val styleinput = "const1:1.2;const2:4.5,3,5,0;end" val Converter(float1, array) = styleinput // ... Use float1 = 1.2 and array= {4.5,3,5,0} val…
Mikaël Mayer
  • 10,425
  • 6
  • 64
  • 101