Class AllRecommendedSightMechanism<U extends java.io.Serializable,​I extends java.io.Serializable,​P>

java.lang.Object
es.uam.eps.ir.relison.diffusion.sight.IndividualSightMechanism<U,​I,​P>
es.uam.eps.ir.relison.diffusion.sight.AllRecommendedSightMechanism<U,​I,​P>
Type Parameters:
U - type of the users
I - type of the information pieces
P - type of the parameters
All Implemented Interfaces:
SightMechanism<U,​I,​P>

public class AllRecommendedSightMechanism<U extends java.io.Serializable,​I extends java.io.Serializable,​P>
extends IndividualSightMechanism<U,​I,​P>
Sees the pieces of information that come from recommended users and the user has not previously propagated.
  • Field Summary

    Fields 
    Modifier and Type Field Description
    private java.util.Map<U,​java.util.Set<U>> allowed
    For each user, the set of users they are allowed to see information from
    private boolean initialized
    Indicates if the selections have been initialized or not.
    private EdgeOrientation orientation
    Orientation for indicating whih neighbors of the user propagate the information.
  • Constructor Summary

    Constructors 
    Constructor Description
    AllRecommendedSightMechanism​(EdgeOrientation orient)
    Constructor.
  • Method Summary

    Modifier and Type Method Description
    void resetSelections​(Data<U,​I,​P> data)
    For each user, this method preconfigures the sight mechanism (for example, selecting a fixed set of users whom each user pays attention to).
    boolean seesInformation​(UserState<U> user, Data<U,​I,​P> data, PropagatedInformation prop)
    Checks if a user sees or not a piece of information.

    Methods inherited from class es.uam.eps.ir.relison.diffusion.sight.IndividualSightMechanism

    seesInformation

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • allowed

      private final java.util.Map<U extends java.io.Serializable,​java.util.Set<U extends java.io.Serializable>> allowed
      For each user, the set of users they are allowed to see information from
    • initialized

      private boolean initialized
      Indicates if the selections have been initialized or not.
    • orientation

      private final EdgeOrientation orientation
      Orientation for indicating whih neighbors of the user propagate the information.
  • Constructor Details

  • Method Details