본문 바로가기

카테고리 없음

2020-09-22 06시 개발자 글 모음 | "ListItemReader 성능상 주" 외 2개 이야기

WPF Samples by 김기수

  • Window is the root control that must be used to hold/host other controls (e
  • Page is a control which can be hosted in other container controls like NavigationWindow or Frame
  • Page control has its own goal to serve like other controls (e


개인방송/라이브 스트리밍 입문 - (1) 방송의 기본 재로, 입력 소스 by 김태호

  • 마이크 입력과 같이 아날로그 신호를 디지털로 변환해 주는 장비와 비디오 캡쳐 장비와 같이 디지털 비디오 신호를 다른 형태의 디지털 신호로 변환해 주는 장치로 나뉩니다
  • 입력받은 HDMI 신호를 그대로 출력하는 기능 (pass-through)이 있으므로 이 신호를 모니터에 연결하면 화면 캡쳐와 게임 플레이를 동시에 수행할 수 있습니다
  • PC 화면 캡쳐 PC 모니터에 출력되는 전체 혹은 일부 화면 (특정 앱 윈도우 등)을 캡쳐하여 비디오 입력 소스로 만듭니다


ListItemReader 성능상 주의사항 by 이동욱

  • add("a"); } } @Test void origin_reader_test() throws Exception { //given ListItemReader reader = new ListItemReader<>(list); //when for (int i = 0; i < size; i++) { reader
  • @Test void origin_reader_LinkedList_test() throws Exception { //given List linkedList = new LinkedList<>(list); ListItemReader reader = new ListItemReader<>(linkedList); //when for (int i = 0; i < size; i++) { reader
  • @Test void linked_reader_test() throws Exception { //given LinkedListItemReader reader = new LinkedListItemReader<>(list); //when for (int i = 0; i < size; i++) { reader